Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save samhodgkinson/ff6ebed12a32c761339156df819493d5 to your computer and use it in GitHub Desktop.
Save samhodgkinson/ff6ebed12a32c761339156df819493d5 to your computer and use it in GitHub Desktop.
Azure-ARM-Storage-Account-API-Variable
{
"$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))]",
"StorageAccounts-apiVersion": "2018-07-01",
},
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"name": "[variables('storageAccountName')]",
"location": "[parameters('location')]",
"apiVersion": "[variables('StorageAccounts-apiVersion')]",
"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