Created
February 15, 2019 10:05
-
-
Save samhodgkinson/2c8a62e9d0d17b04d6de06c46a93c7dc to your computer and use it in GitHub Desktop.
Azure-ARM-Storage-Account
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"storageAccountType": { | |
"type": "string", | |
"defaultValue": "Standard_LRS", | |
"allowedValues": [ | |
"Standard_LRS", | |
"Standard_GRS", | |
"Standard_ZRS", | |
"Premium_LRS" | |
], | |
"metadata": { | |
"description": "Storage Account type" | |
} | |
}, | |
"location": { | |
"type": "string", | |
"defaultValue": "[resourceGroup().location]", | |
"metadata": { | |
"description": "Location for all resources." | |
} | |
} | |
}, | |
"variables": { | |
"storageAccountName": "[concat('store', uniquestring(resourceGroup().id))]" | |
}, | |
"resources": [ | |
{ | |
"type": "Microsoft.Storage/storageAccounts", | |
"name": "[variables('storageAccountName')]", | |
"location": "[parameters('location')]", | |
"apiVersion": "2018-07-01", | |
"sku": { | |
"name": "[parameters('storageAccountType')]" | |
}, | |
"kind": "StorageV2", | |
"properties": {} | |
} | |
], | |
"outputs": { | |
"storageAccountName": { | |
"type": "string", | |
"value": "[variables('storageAccountName')]" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment