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
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.
Copy file name to clipboardExpand all lines: articles/virtual-machines/extensions/key-vault-windows.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ The following JSON shows the schema for the Key Vault VM extension. Before you c
116
116
"autoUpgradeMinorVersion": true,
117
117
"settings": {
118
118
"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">,
120
120
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
121
121
"requireInitialSync": <Initial synchronization of certificates. Example: true>,
122
122
"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.
@@ -212,8 +212,8 @@ The JSON schema includes the following properties.
212
212
|`apiVersion`| 2022-08-01 | date |
213
213
|`publisher`| Microsoft.Azure.KeyVault | string |
214
214
|`type`| KeyVaultForWindows | string |
215
-
|`typeHandlerVersion`| 1.0 |int|
216
-
|`pollingIntervalInS`| 3600 | string |
215
+
|`typeHandlerVersion`|"1.0"|string|
216
+
|`pollingIntervalInS`|"3600"| string |
217
217
|`certificateStoreName`| MY | string |
218
218
|`linkOnRenewal`| true | boolean |
219
219
|`certificateStoreLocation`| LocalMachine or CurrentUser (case sensitive) | string |
@@ -250,7 +250,7 @@ The following JSON snippets provide example settings for an ARM template deploym
250
250
"autoUpgradeMinorVersion": true,
251
251
"settings": {
252
252
"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">,
254
254
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
255
255
"observedCertificates": <An array of KeyVault URIs that represent monitored certificates, including certificate store location and ACL permission to certificate private key. Example:
256
256
[
@@ -301,7 +301,7 @@ The following JSON snippets provide example settings for an ARM template deploym
301
301
"autoUpgradeMinorVersion": true,
302
302
"settings": {
303
303
"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">,
305
305
"linkOnRenewal": <Windows only. Ensures s-channel binding when the certificate renews without necessitating redeployment. Example: true>,
306
306
"certificateStoreName": <The certificate store name. Example: "MY">,
307
307
"certificateStoreLocation": <The certificate store location, which currently works locally only. Example: "LocalMachine">,
0 commit comments