Last active
October 29, 2018 13:25
-
-
Save CoditCompany/a3292f8b617e394dc24c518de3614530 to your computer and use it in GitHub Desktop.
Key Vault Deployment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "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