{ "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "resourceGroupName": { "type": "string", "defaultValue": "Hutopy", "metadata": { "_parameterType": "resourceGroup", "description": "Name of the resource group for the resource. It is recommended to put resources under same resource group for better tracking." } }, "resourceGroupLocation": { "type": "string", "defaultValue": "canadaeast", "metadata": { "_parameterType": "location", "description": "Location of the resource group. Resource groups could have different location than resources." } }, "resourceLocation": { "type": "string", "defaultValue": "[parameters('resourceGroupLocation')]", "metadata": { "_parameterType": "location", "description": "Location of the resource. By default use resource group's location, unless the resource provider is not supported there." } } }, "resources": [ { "type": "Microsoft.Resources/resourceGroups", "name": "[parameters('resourceGroupName')]", "location": "[parameters('resourceGroupLocation')]", "apiVersion": "2019-10-01" }, { "type": "Microsoft.Resources/deployments", "name": "[concat(parameters('resourceGroupName'), 'Deployment', uniqueString(concat('Hutopyvault', subscription().subscriptionId)))]", "resourceGroup": "[parameters('resourceGroupName')]", "apiVersion": "2019-10-01", "dependsOn": [ "[parameters('resourceGroupName')]" ], "properties": { "mode": "Incremental", "template": { "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "resources": [ { "name": "Hutopyvault", "type": "Microsoft.KeyVault/vaults", "location": "[parameters('resourceLocation')]", "properties": { "sku": { "family": "A", "name": "Standard" }, "tenantId": "5f2d8eae-fe77-483e-883b-0eac5059186a", "accessPolicies": [], "enabledForDeployment": true, "enabledForDiskEncryption": true, "enabledForTemplateDeployment": true }, "apiVersion": "2016-10-01" } ] } } } ], "metadata": { "_dependencyType": "secrets.keyVault" } }