pkgcloud-with-arm
Version:
An infrastructure-as-a-service agnostic cloud library for node.js
22 lines • 587 B
JSON
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"name": { "type": "string" },
"type": { "type": "string", "defaultValue": "Standard_LRS" }
},
"variables": { },
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"name": "[parameters('name')]",
"apiVersion": "2016-01-01",
"location": "[resourceGroup().location]",
"sku": {
"name": "[parameters('type')]"
},
"kind": "Storage",
"properties": {}
}
]
}