mirror of
https://github.com/XploitWizer-Community/XploitSPY.git
synced 2024-12-28 16:45:46 +08:00
Create azuredeploy.json
This commit is contained in:
parent
6f6ce4a864
commit
43b4d28554
48
azuredeploy.json
Normal file
48
azuredeploy.json
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{
|
||||||
|
"$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')]"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user