Created
February 15, 2019 10:08
-
-
Save samhodgkinson/ff6ebed12a32c761339156df819493d5 to your computer and use it in GitHub Desktop.
Azure-ARM-Storage-Account-API-Variable
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))]", | |
"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