Skip to content

Commit 1ccdf4b

Browse files
Merge pull request #222682 from jlichwa/patch-42
Update key-vault-windows.md
2 parents 425c491 + cfcb855 commit 1ccdf4b

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

articles/virtual-machines/extensions/key-vault-windows.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following JSON shows the schema for the Key Vault VM extension. The extensio
8080
{
8181
"type": "Microsoft.Compute/virtualMachines/extensions",
8282
"name": "KVVMExtensionForWindows",
83-
"apiVersion": "2019-07-01",
83+
"apiVersion": "2022-08-01",
8484
"location": "<location>",
8585
"dependsOn": [
8686
"[concat('Microsoft.Compute/virtualMachines/', <vmName>)]"
@@ -100,7 +100,7 @@ The following JSON shows the schema for the Key Vault VM extension. The extensio
100100
"observedCertificates": <list of KeyVault URIs representing monitored certificates, e.g.: "[https://myvault.vault.azure.net/secrets/mycertificate]">
101101
},
102102
"authenticationSettings": {
103-
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/ouath2/token">,
103+
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/oauth2/token">,
104104
"msiClientId": <Required when VM has any user assigned identities. MSI identity e.g.: "c7373ae5-91c2-4165-8ab6-7381d6e75619".>
105105
}
106106
}
@@ -114,7 +114,7 @@ The following JSON shows the schema for the Key Vault VM extension. The extensio
114114
{
115115
"type": "Microsoft.Compute/virtualMachines/extensions",
116116
"name": "KVVMExtensionForWindows",
117-
"apiVersion": "2019-07-01",
117+
"apiVersion": "2022-08-01",
118118
"location": "<location>",
119119
"dependsOn": [
120120
"[concat('Microsoft.Compute/virtualMachines/', <vmName>)]"
@@ -148,7 +148,7 @@ The following JSON shows the schema for the Key Vault VM extension. The extensio
148148
]>
149149
},
150150
"authenticationSettings": {
151-
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/ouath2/token">,
151+
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/oauth2/token">,
152152
"msiClientId": <Required when VM has any user assigned identities. MSI identity e.g.: "c7373ae5-91c2-4165-8ab6-7381d6e75619".>
153153
}
154154
}
@@ -174,7 +174,7 @@ The following JSON shows the schema for the Key Vault VM extension. The extensio
174174

175175
| Name | Value / Example | Data Type |
176176
| ---- | ---- | ---- |
177-
| apiVersion | 2019-07-01 | date |
177+
| apiVersion | 2022-08-01 | date |
178178
| publisher | Microsoft.Azure.KeyVault | string |
179179
| type | KeyVaultForWindows | string |
180180
| typeHandlerVersion | 1.0 | int |
@@ -184,14 +184,14 @@ The following JSON shows the schema for the Key Vault VM extension. The extensio
184184
| certificateStoreLocation | LocalMachine or CurrentUser (case sensitive) | string |
185185
| requireInitialSync | false | boolean |
186186
| observedCertificates | ["https://myvault.vault.azure.net/secrets/mycertificate", "https://myvault.vault.azure.net/secrets/mycertificate2"] | string array
187-
| msiEndpoint | http://169.254.169.254/metadata/identity/ouath2/token | string |
187+
| msiEndpoint | http://169.254.169.254/metadata/identity/oauth2/token | string |
188188
| msiClientId | c7373ae5-91c2-4165-8ab6-7381d6e75619 | string |
189189

190190
### [Version-3.0](#tab/version3)
191191

192192
| Name | Value / Example | Data Type |
193193
| ---- | ---- | ---- |
194-
| apiVersion | 2019-07-01 | date |
194+
| apiVersion | 2022-08-01 | date |
195195
| publisher | Microsoft.Azure.KeyVault | string |
196196
| type | KeyVaultForWindows | string |
197197
| typeHandlerVersion | 3.0 | int |
@@ -204,7 +204,7 @@ The following JSON shows the schema for the Key Vault VM extension. The extensio
204204
| observedCertificates/certificateStoreLocation | LocalMachine or CurrentUser (case sensitive) | string |
205205
| observedCertificates/keyExportable(optional) | false | boolean |
206206
| observedCertificates/accounts(optional) | ["Network Service", "Local Service"] | string array |
207-
| msiEndpoint | http://169.254.169.254/metadata/identity/ouath2/token | string |
207+
| msiEndpoint | http://169.254.169.254/metadata/identity/oauth2/token | string |
208208
| msiClientId | c7373ae5-91c2-4165-8ab6-7381d6e75619 | string |
209209

210210
---
@@ -221,7 +221,7 @@ The JSON configuration for a key vault extension is nested inside the virtual ma
221221
{
222222
"type": "Microsoft.Compute/virtualMachines/extensions",
223223
"name": "KeyVaultForWindows",
224-
"apiVersion": "2019-07-01",
224+
"apiVersion": "2022-08-01",
225225
"location": "<location>",
226226
"dependsOn": [
227227
"[concat('Microsoft.Compute/virtualMachines/', <vmName>)]"
@@ -240,7 +240,7 @@ The JSON configuration for a key vault extension is nested inside the virtual ma
240240
"observedCertificates": <list of KeyVault URIs representing monitored certificates, e.g.: ["https://myvault.vault.azure.net/secrets/mycertificate", "https://myvault.vault.azure.net/secrets/mycertificate2"]>
241241
},
242242
"authenticationSettings": {
243-
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/ouath2/token">,
243+
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/oauth2/token">,
244244
"msiClientId": <Required when VM has any user assigned identities. MSI identity e.g.: "c7373ae5-91c2-4165-8ab6-7381d6e75619".>
245245
}
246246
}
@@ -254,7 +254,7 @@ The JSON configuration for a key vault extension is nested inside the virtual ma
254254
{
255255
"type": "Microsoft.Compute/virtualMachines/extensions",
256256
"name": "KeyVaultForWindows",
257-
"apiVersion": "2019-07-01",
257+
"apiVersion": "2022-08-01",
258258
"location": "<location>",
259259
"dependsOn": [
260260
"[concat('Microsoft.Compute/virtualMachines/', <vmName>)]"
@@ -296,7 +296,7 @@ The JSON configuration for a key vault extension is nested inside the virtual ma
296296
]>
297297
},
298298
"authenticationSettings": {
299-
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/ouath2/token">,
299+
"msiEndpoint": <Required when msiClientId is provided. MSI endpoint e.g. for most Azure VMs: "http://169.254.169.254/metadata/identity/oauth2/token">,
300300
"msiClientId": <Required when VM has any user assigned identities. MSI identity e.g.: "c7373ae5-91c2-4165-8ab6-7381d6e75619".>
301301
}
302302
}
@@ -412,7 +412,7 @@ Example settings (settings.json):
412412
]
413413
},
414414
"authenticationSettings": {
415-
"msiEndpoint": "http://169.254.169.254/metadata/identity/ouath2/token",
415+
"msiEndpoint": "http://169.254.169.254/metadata/identity/oauth2/token",
416416
"msiClientId": "c7373ae5-91c2-4165-8ab6-7381d6e75619"
417417
}
418418
}
@@ -516,7 +516,7 @@ Example settings (settings.json):
516516
]
517517
},
518518
"authenticationSettings": {
519-
"msiEndpoint": "http://169.254.169.254/metadata/identity/ouath2/token",
519+
"msiEndpoint": "http://169.254.169.254/metadata/identity/oauth2/token",
520520
"msiClientId": "c7373ae5-91c2-4165-8ab6-7381d6e75619"
521521
}
522522
}

0 commit comments

Comments
 (0)