From 63b6780bd2bc05e068ffb05a17a8a2ff16ed0603 Mon Sep 17 00:00:00 2001 From: Yichun Ma Date: Sat, 30 Jul 2022 20:18:26 +0800 Subject: [PATCH] `d\virtual_machine_extension`: Fix `settings` to be Optional in doc --- website/docs/r/virtual_machine_extension.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/r/virtual_machine_extension.html.markdown b/website/docs/r/virtual_machine_extension.html.markdown index 3642d4bd6627..fb29f6396382 100644 --- a/website/docs/r/virtual_machine_extension.html.markdown +++ b/website/docs/r/virtual_machine_extension.html.markdown @@ -150,7 +150,7 @@ $ az vm extension image list --location westus -o table the latest minor version update to the `type_handler_version` specified. * `automatic_upgrade_enabled` - (Optional) Should the Extension be automatically updated whenever the Publisher releases a new version of this VM Extension? Defaults to `false`. -* `settings` - (Required) The settings passed to the extension, these are +* `settings` - (Optional) The settings passed to the extension, these are specified as a JSON object in a string. ~> **Please Note:** Certain VM Extensions require that the keys in the `settings` block are case sensitive. If you're seeing unhelpful errors, please ensure the keys are consistent with how Azure is expecting them (for instance, for the `JsonADDomainExtension` extension, the keys are expected to be in `TitleCase`.)