Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1264,6 +1264,10 @@
"winRM": {
"$ref": "#/definitions/WinRMConfiguration",
"description": "Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell."
},
"enableVMAgentPlatformUpdates": {
"type": "boolean",
"description": "Indicates whether VMAgent Platform Updates is enabled for the Windows virtual machine. Default value is false."
}
},
"description": "Specifies Windows operating system settings on the virtual machine."
Expand Down Expand Up @@ -1313,6 +1317,10 @@
"patchSettings": {
"$ref": "#/definitions/LinuxPatchSettings",
"description": "[Preview Feature] Specifies settings related to VM Guest Patching on Linux."
},
"enableVMAgentPlatformUpdates": {
"type": "boolean",
"description": "Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false."
}
},
"description": "Specifies the Linux operating system settings on the virtual machine. <br><br>For a list of supported Linux distributions, see [Linux on Azure-Endorsed Distributions](https://docs.microsoft.com/azure/virtual-machines/linux/endorsed-distros)."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,12 @@
]
},
"suppressFailures": true,
"protectedSettingsFromKeyVault": {}
"protectedSettingsFromKeyVault": {
"sourceVault": {
"id": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/kvName"
},
"secretUrl": "https://kvName.vault.azure.net/secrets/secretName/79b88b3a6f5440ffb2e73e44a0db712e"
}
},
"id": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"name": "aaaaaaaaaaaaa",
Expand Down Expand Up @@ -1065,7 +1070,12 @@
]
},
"suppressFailures": true,
"protectedSettingsFromKeyVault": {}
"protectedSettingsFromKeyVault": {
"sourceVault": {
"id": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/kvName"
},
"secretUrl": "https://kvName.vault.azure.net/secrets/secretName/79b88b3a6f5440ffb2e73e44a0db712e"
}
},
"id": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"name": "aaaaaaaaaaaaa",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,12 @@
]
},
"suppressFailures": true,
"protectedSettingsFromKeyVault": {}
"protectedSettingsFromKeyVault": {
"sourceVault": {
"id": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/kvName"
},
"secretUrl": "https://kvName.vault.azure.net/secrets/secretName/79b88b3a6f5440ffb2e73e44a0db712e"
}
},
"id": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"name": "aaaaaaaaaaaaa",
Expand Down Expand Up @@ -1065,7 +1070,12 @@
]
},
"suppressFailures": true,
"protectedSettingsFromKeyVault": {}
"protectedSettingsFromKeyVault": {
"sourceVault": {
"id": "/subscriptions/a53f7094-a16c-47af-abe4-b05c05d0d79a/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/kvName"
},
"secretUrl": "https://kvName.vault.azure.net/secrets/secretName/79b88b3a6f5440ffb2e73e44a0db712e"
}
},
"id": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"name": "aaaaaaaaaaaaa",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1953,7 +1953,7 @@
"description": "Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false."
},
"protectedSettingsFromKeyVault": {
"type": "object",
"$ref": "./computeRPCommon.json#/definitions/KeyVaultSecretReference",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

was this a mistake in the previous version? this will be considered breaking change.
will you comment on why this change is being made / justification for breaking change

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, it was a mistake in the previous version. That's being addressed here: #20101. It should also get fixed here to avoid confusion

"description": "The extensions protected settings that are passed by reference, and consumed from key vault"
}
},
Expand Down Expand Up @@ -1998,7 +1998,7 @@
"description": "Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false."
},
"protectedSettingsFromKeyVault": {
"type": "object",
"$ref": "./computeRPCommon.json#/definitions/KeyVaultSecretReference",
"description": "The extensions protected settings that are passed by reference, and consumed from key vault"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4498,7 +4498,7 @@
"description": "Indicates whether failures stemming from the extension will be suppressed (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The default is false."
},
"protectedSettingsFromKeyVault": {
"type": "object",
"$ref": "./computeRPCommon.json#/definitions/KeyVaultSecretReference",
"description": "The extensions protected settings that are passed by reference, and consumed from key vault"
}
},
Expand Down