{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "storageAccountName": { "type": "string", "metadata": { "description": "The name of the Azure Storage account." } }, "containerName": { "type": "string", "defaultValue": "logs", "metadata": { "description": "The name of the blob container." } }, "location": { "type": "string", "defaultValue": "[resourceGroup().location]", "metadata": { "description": "The location in which the Azure Storage resources should be deployed." } } }, "resources": [ { "name": "[parameters('storageAccountName')]", "type": "Microsoft.Storage/storageAccounts", "apiVersion": "2018-02-01", "location": "[parameters('location')]", "kind": "StorageV2", "sku": { "name": "Standard_LRS", "tier": "Standard" }, "properties": { "accessTier": "Hot" }, "resources": [ { "name": "[concat('default/', parameters('containerName'))]", "type": "blobServices/containers", "apiVersion": "2018-03-01-preview", "dependsOn": [ "[parameters('storageAccountName')]" ] } ] } ] }