mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-11-05 18:09:22 +08:00
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
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"
|
||
|
],
|
||
|
"metadata": {
|
||
|
"description": "Storage Account type"
|
||
|
}
|
||
|
},
|
||
|
"location": {
|
||
|
"type": "string",
|
||
|
"defaultValue": "[resourceGroup().location]",
|
||
|
"metadata": {
|
||
|
"description": "Location for all resources."
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"variables": {
|
||
|
"storageAccountName": "[concat('store', uniquestring(resourceGroup().id))]"
|
||
|
},
|
||
|
"resources": [
|
||
|
{
|
||
|
"type": "Microsoft.Storage/storageAccounts",
|
||
|
"apiVersion": "2019-04-01",
|
||
|
"name": "[variables('storageAccountName')]",
|
||
|
"location": "[parameters('location')]",
|
||
|
"sku": {
|
||
|
"name": "[parameters('storageAccountType')]"
|
||
|
},
|
||
|
"kind": "StorageV2",
|
||
|
"properties": {}
|
||
|
}
|
||
|
],
|
||
|
"outputs": {
|
||
|
"storageAccountName": {
|
||
|
"type": "string",
|
||
|
"value": "[variables('storageAccountName')]"
|
||
|
}
|
||
|
}
|
||
|
}
|