2020-07-02 17:31:16 -04:00
|
|
|
{
|
2021-03-08 15:13:04 -05:00
|
|
|
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
|
|
|
|
"contentVersion": "1.0.0.0",
|
|
|
|
"parameters": {
|
|
|
|
"storageAccountType": {
|
|
|
|
"type": "string",
|
|
|
|
"defaultValue": "Standard_LRS",
|
|
|
|
"allowedValues": [
|
|
|
|
"Standard_LRS",
|
|
|
|
"Standard_GRS",
|
|
|
|
"Standard_ZRS",
|
|
|
|
"Premium_LRS"
|
|
|
|
]
|
2020-07-03 07:23:40 -04:00
|
|
|
},
|
2021-03-08 15:13:04 -05:00
|
|
|
"location": {
|
|
|
|
"type": "string",
|
|
|
|
"metadata": {
|
|
|
|
"description": "Location for the resources."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"resources": [
|
|
|
|
{
|
|
|
|
"type": "Microsoft.Storage/storageAccounts",
|
2023-05-15 14:26:53 -04:00
|
|
|
"apiVersion": "2022-09-01",
|
2021-03-08 15:13:04 -05:00
|
|
|
"name": "[concat('store', uniquestring(resourceGroup().id))]",
|
|
|
|
"location": "[parameters('location')]",
|
|
|
|
"kind": "StorageV2",
|
|
|
|
"sku": {
|
|
|
|
"name": "[parameters('storageAccountType')]"
|
|
|
|
}
|
2020-07-03 07:23:40 -04:00
|
|
|
}
|
2021-03-08 15:13:04 -05:00
|
|
|
]
|
2020-11-06 17:18:48 -05:00
|
|
|
}
|