Skip to content

Instantly share code, notes, and snippets.

@CoditCompany
Last active October 29, 2018 13:25
Show Gist options
  • Save CoditCompany/a3292f8b617e394dc24c518de3614530 to your computer and use it in GitHub Desktop.
Save CoditCompany/a3292f8b617e394dc24c518de3614530 to your computer and use it in GitHub Desktop.
Key Vault Deployment
[
{
"apiVersion": "2016-10-01",
"location": "[parameters('location')]",
"name": "[variables('keyVaultName')]",
"properties": {
"enabledForDeployment": false,
"enabledForDiskEncryption": false,
"enabledForTemplateDeployment": true,
"tenantId": "[subscription().tenantId]",
"accessPolicies": [],
"sku": {
"name": "standard",
"family": "A"
}
},
"tags": {
"displayName": "Key Vault" },
"type": "Microsoft.KeyVault/vaults"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment