You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ResourceManager/Resources/Commands.Resources.Test/KeyVaultSetupTemplate.json
+95-5Lines changed: 95 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,64 @@
8
8
"description": "Name of the Vault"
9
9
}
10
10
},
11
+
"tenantId": {
12
+
"type": "string",
13
+
"metadata": {
14
+
"description": "Tenant Id for the subscription. Available from Get-AzureRMSubscription PowerShell cmdlet"
15
+
}
16
+
},
17
+
"objectId": {
18
+
"type": "string",
19
+
"metadata": {
20
+
"description": "Object Id of the AD user. Available from Get-AzureRMADUser or Get-AzureRMADServicePrincipal cmdlets"
21
+
}
22
+
},
23
+
"keysPermissions": {
24
+
"type": "array",
25
+
"defaultValue": [ "all" ],
26
+
"metadata": {
27
+
"description": "Permissions to grant user to keys in the vault. Valid values are: all, create, import, update, get, list, delete, backup, restore, encrypt, decrypt, wrapkey, unwrapkey, sign, and verify."
28
+
}
29
+
},
30
+
"secretsPermissions": {
31
+
"type": "array",
32
+
"defaultValue": [ "all" ],
33
+
"metadata": {
34
+
"description": "Permissions to grant user to secrets in the vault. Valid values are: all, get, set, list, and delete."
35
+
}
36
+
},
37
+
"skuName": {
38
+
"type": "string",
39
+
"defaultValue": "Standard",
40
+
"allowedValues": [
41
+
"Standard",
42
+
"Premium"
43
+
],
44
+
"metadata": {
45
+
"description": "SKU for the vault"
46
+
}
47
+
},
48
+
"enabledForDeployment": {
49
+
"type": "bool",
50
+
"defaultValue": true,
51
+
"metadata": {
52
+
"description": "Specifies if the vault is enabled for a VM deployment"
53
+
}
54
+
},
55
+
"enabledForTemplateDeployment": {
56
+
"type": "bool",
57
+
"defaultValue": true,
58
+
"metadata": {
59
+
"description": "Specifies if the vault is enabled for a ARM template deployment"
60
+
}
61
+
},
62
+
"enableVaultForVolumeEncryption": {
63
+
"type": "bool",
64
+
"defaultValue": false,
65
+
"metadata": {
66
+
"description": "Specifies if the vault is enabled for volume encryption"
0 commit comments