Skip to content

Commit 8a6d175

Browse files
authored
Merge pull request #115966 from rdeveen/patch-5
pollingIntervalInS; where S means String
2 parents 9a5c692 + fcf4461 commit 8a6d175

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
@@ -115,7 +115,7 @@ The following JSON shows the schema for the Key Vault VM extension. Before you c
115115
"autoUpgradeMinorVersion": true,
116116
"settings": {
117117
"secretsManagementSettings": {
118-
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: 3600>,
118+
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: "3600">,
119119
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
120120
"requireInitialSync": <Initial synchronization of certificates. Example: true>,
121121
"observedCertificates": <An array of KeyVault URIs that represent monitored certificates, including certificate store location and ACL permission to certificate private key. Example:
@@ -191,8 +191,8 @@ The JSON schema includes the following properties.
191191
| `apiVersion` | 2022-08-01 | date |
192192
| `publisher` | Microsoft.Azure.KeyVault | string |
193193
| `type` | KeyVaultForWindows | string |
194-
| `typeHandlerVersion` | 3.0 | int |
195-
| `pollingIntervalInS` | 3600 | string |
194+
| `typeHandlerVersion` | "3.0" | string |
195+
| `pollingIntervalInS` | "3600" | string |
196196
| `linkOnRenewal` (optional) | true | boolean |
197197
| `requireInitialSync` (optional) | false | boolean |
198198
| `observedCertificates` | [{...}, {...}] | string array |
@@ -211,8 +211,8 @@ The JSON schema includes the following properties.
211211
| `apiVersion` | 2022-08-01 | date |
212212
| `publisher` | Microsoft.Azure.KeyVault | string |
213213
| `type` | KeyVaultForWindows | string |
214-
| `typeHandlerVersion` | 1.0 | int |
215-
| `pollingIntervalInS` | 3600 | string |
214+
| `typeHandlerVersion` | "1.0" | string |
215+
| `pollingIntervalInS` | "3600" | string |
216216
| `certificateStoreName` | MY | string |
217217
| `linkOnRenewal` | true | boolean |
218218
| `certificateStoreLocation` | LocalMachine or CurrentUser (case sensitive) | string |
@@ -249,7 +249,7 @@ The following JSON snippets provide example settings for an ARM template deploym
249249
"autoUpgradeMinorVersion": true,
250250
"settings": {
251251
"secretsManagementSettings": {
252-
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: 3600>,
252+
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: "3600">,
253253
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
254254
"observedCertificates": <An array of KeyVault URIs that represent monitored certificates, including certificate store location and ACL permission to certificate private key. Example:
255255
[
@@ -300,7 +300,7 @@ The following JSON snippets provide example settings for an ARM template deploym
300300
"autoUpgradeMinorVersion": true,
301301
"settings": {
302302
"secretsManagementSettings": {
303-
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: 3600>,
303+
"pollingIntervalInS": <A string that specifies the polling interval in seconds. Example: "3600">,
304304
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
305305
"certificateStoreName": <The certificate store name. Example: "MY">,
306306
"certificateStoreLocation": <The certificate store location, which currently works locally only. Example: "LocalMachine">,

0 commit comments

Comments
 (0)