mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
e6cf8d3845
* Move tests to the test directory * Fix linting errors * Add states back * Add xml back
34 lines
845 B
JSON
34 lines
845 B
JSON
{
|
|
"$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"
|
|
]
|
|
},
|
|
"location": {
|
|
"type": "string",
|
|
"metadata": {
|
|
"description": "Location for the resources."
|
|
}
|
|
}
|
|
},
|
|
"resources": [
|
|
{
|
|
"type": "Microsoft.Storage/storageAccounts",
|
|
"apiVersion": "2022-09-01",
|
|
"name": "[concat('store', uniquestring(resourceGroup().id))]",
|
|
"location": "[parameters('location')]",
|
|
"kind": "StorageV2",
|
|
"sku": {
|
|
"name": "[parameters('storageAccountType')]"
|
|
}
|
|
}
|
|
]
|
|
}
|