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
"description": "Specifies the name of the key vault."
9
+
}
10
+
},
11
+
"location": {
12
+
"type": "string",
13
+
"defaultValue": "[resourceGroup().location]",
14
+
"metadata": {
15
+
"description": "Specifies the Azure location where the key vault should be created."
16
+
}
17
+
},
18
+
"enabledForDeployment": {
19
+
"type": "bool",
20
+
"defaultValue": false,
21
+
"allowedValues": [
22
+
true,
23
+
false
24
+
],
25
+
"metadata": {
26
+
"description": "Specifies whether Azure Virtual Machines are permitted to retrieve certificates stored as secrets from the key vault."
27
+
}
28
+
},
29
+
"enabledForDiskEncryption": {
30
+
"type": "bool",
31
+
"defaultValue": false,
32
+
"allowedValues": [
33
+
true,
34
+
false
35
+
],
36
+
"metadata": {
37
+
"description": "Specifies whether Azure Disk Encryption is permitted to retrieve secrets from the vault and unwrap keys."
38
+
}
39
+
},
40
+
"enabledForTemplateDeployment": {
41
+
"type": "bool",
42
+
"defaultValue": false,
43
+
"allowedValues": [
44
+
true,
45
+
false
46
+
],
47
+
"metadata": {
48
+
"description": "Specifies whether Azure Resource Manager is permitted to retrieve secrets from the key vault."
49
+
}
50
+
},
51
+
"tenantId": {
52
+
"type": "string",
53
+
"defaultValue": "[subscription().tenantId]",
54
+
"metadata": {
55
+
"description": "Specifies the Azure Active Directory tenant ID that should be used for authenticating requests to the key vault. Get it by using Get-AzSubscription cmdlet."
56
+
}
57
+
},
58
+
"objectId": {
59
+
"type": "string",
60
+
"metadata": {
61
+
"description": "Specifies the object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies. Get it by using Get-AzADUser or Get-AzADServicePrincipal cmdlets."
62
+
}
63
+
},
64
+
"keysPermissions": {
65
+
"type": "array",
66
+
"defaultValue": [
67
+
"list"
68
+
],
69
+
"metadata": {
70
+
"description": "Specifies the permissions to keys in the vault. Valid values are: all, encrypt, decrypt, wrapKey, unwrapKey, sign, verify, get, list, create, update, import, delete, backup, restore, recover, and purge."
71
+
}
72
+
},
73
+
"secretsPermissions": {
74
+
"type": "array",
75
+
"defaultValue": [
76
+
"list"
77
+
],
78
+
"metadata": {
79
+
"description": "Specifies the permissions to secrets in the vault. Valid values are: all, get, list, set, delete, backup, restore, recover, and purge."
80
+
}
81
+
},
82
+
"skuName": {
83
+
"type": "string",
84
+
"defaultValue": "Standard",
85
+
"allowedValues": [
86
+
"Standard",
87
+
"Premium"
88
+
],
89
+
"metadata": {
90
+
"description": "Specifies whether the key vault is a standard vault or a premium vault."
0 commit comments