From cfbe11b126e1ba307569e8912598f24e403b4b2d Mon Sep 17 00:00:00 2001 From: Cameron Stokes Date: Wed, 13 Apr 2016 16:24:01 -0700 Subject: [PATCH] Fix docs for azurerm_virtual_machine and ssh_keys (#6171) For `ssh_keys` in `os_profile_linux_config`, the docs specify `key_path`, but the code expects `path` - https://github.com/hashicorp/terraform/blob/453d38bafc4482fd86fd467c54b7346bfa727a76/builtin/providers/azurerm/resource_arm_virtual_machine.go#L284. --- .../docs/providers/azurerm/r/virtual_machine.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/providers/azurerm/r/virtual_machine.html.markdown b/website/source/docs/providers/azurerm/r/virtual_machine.html.markdown index 9f45a2005..d2b6233bf 100644 --- a/website/source/docs/providers/azurerm/r/virtual_machine.html.markdown +++ b/website/source/docs/providers/azurerm/r/virtual_machine.html.markdown @@ -175,7 +175,7 @@ For more information on the different example configurations, please check out t `os_profile_linux_config` supports the following: * `disable_password_authentication` - (Required) Specifies whether password authentication should be disabled. -* `ssh_keys` - (Optional) Specifies a collection of `key_path` and `key_data` to be placed on the virtual machine. +* `ssh_keys` - (Optional) Specifies a collection of `path` and `key_data` to be placed on the virtual machine. `os_profile_secrets` supports the following: @@ -191,4 +191,4 @@ For more information on the different example configurations, please check out t The following attributes are exported: -* `id` - The virtual machine ID. \ No newline at end of file +* `id` - The virtual machine ID.