superlint/.automation/test/arm/arm_good_1.json

35 lines
845 B
JSON
Raw Normal View History

2020-07-02 17:31:16 -04: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
},
"location": {
"type": "string",
"metadata": {
"description": "Location for the resources."
}
}
},
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2019-06-01",
"name": "[concat('store', uniquestring(resourceGroup().id))]",
"location": "[parameters('location')]",
"kind": "StorageV2",
"sku": {
"name": "[parameters('storageAccountType')]"
}
2020-07-03 07:23:40 -04:00
}
]
2020-11-06 17:18:48 -05:00
}