Skip to content

Commit fcf4461

Browse files
authored
pollingIntervalInS; where S means String
The pollingIntervalInS should be formatted as a String. In the example it is formatted as an Integer. The typeHandlerVersion should be formatted as a String. in the table it is defined as an Integer.
1 parent 3733f92 commit fcf4461

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ The following JSON shows the schema for the Key Vault VM extension. Before you c
116116
"autoUpgradeMinorVersion": true,
117117
"settings": {
118118
"secretsManagementSettings": {
119-
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: 3600>,
119+
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: "3600">,
120120
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
121121
"requireInitialSync": <Initial synchronization of certificates. Example: true>,
122122
"observedCertificates": <An array of KeyVault URIs that represent monitored certificates, including certificate store location and ACL permission to certificate private key. Example:
@@ -192,8 +192,8 @@ The JSON schema includes the following properties.
192192
| `apiVersion` | 2022-08-01 | date |
193193
| `publisher` | Microsoft.Azure.KeyVault | string |
194194
| `type` | KeyVaultForWindows | string |
195-
| `typeHandlerVersion` | 3.0 | int |
196-
| `pollingIntervalInS` | 3600 | string |
195+
| `typeHandlerVersion` | "3.0" | string |
196+
| `pollingIntervalInS` | "3600" | string |
197197
| `linkOnRenewal` (optional) | true | boolean |
198198
| `requireInitialSync` (optional) | false | boolean |
199199
| `observedCertificates` | [{...}, {...}] | string array |
@@ -212,8 +212,8 @@ The JSON schema includes the following properties.
212212
| `apiVersion` | 2022-08-01 | date |
213213
| `publisher` | Microsoft.Azure.KeyVault | string |
214214
| `type` | KeyVaultForWindows | string |
215-
| `typeHandlerVersion` | 1.0 | int |
216-
| `pollingIntervalInS` | 3600 | string |
215+
| `typeHandlerVersion` | "1.0" | string |
216+
| `pollingIntervalInS` | "3600" | string |
217217
| `certificateStoreName` | MY | string |
218218
| `linkOnRenewal` | true | boolean |
219219
| `certificateStoreLocation` | LocalMachine or CurrentUser (case sensitive) | string |
@@ -250,7 +250,7 @@ The following JSON snippets provide example settings for an ARM template deploym
250250
"autoUpgradeMinorVersion": true,
251251
"settings": {
252252
"secretsManagementSettings": {
253-
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: 3600>,
253+
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: "3600">,
254254
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
255255
"observedCertificates": <An array of KeyVault URIs that represent monitored certificates, including certificate store location and ACL permission to certificate private key. Example:
256256
[
@@ -301,7 +301,7 @@ The following JSON snippets provide example settings for an ARM template deploym
301301
"autoUpgradeMinorVersion": true,
302302
"settings": {
303303
"secretsManagementSettings": {
304-
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: 3600>,
304+
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: "3600">,
305305
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
306306
"certificateStoreName": <The certificate store name. Example: "MY">,
307307
"certificateStoreLocation": <The certificate store location, which currently works locally only. Example: "LocalMachine">,

0 commit comments

Comments
 (0)