From c562e17659abefce44a5e64fd798e6000b84a6f7 Mon Sep 17 00:00:00 2001 From: AndrewCi Date: Thu, 24 Oct 2019 15:31:47 -0400 Subject: [PATCH] Fixed example error in windows_winrm user guide (#63922) ##### SUMMARY The example code to configure TLS 1.2 Support using Ansible had an indention error. The register variable 'enable_tls12' was not indented. This caused the subsequent task to fail since the variable was not registered. ##### ISSUE TYPE - Docs Pull Request +label: docsite_pr --- docs/docsite/rst/user_guide/windows_winrm.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/windows_winrm.rst b/docs/docsite/rst/user_guide/windows_winrm.rst index 7e44461a499..6bc9f3f6f30 100644 --- a/docs/docsite/rst/user_guide/windows_winrm.rst +++ b/docs/docsite/rst/user_guide/windows_winrm.rst @@ -818,7 +818,7 @@ The below Ansible tasks can also be used to enable TLS v1.2: data: '{{ item.value }}' type: dword state: present - register: enable_tls12 + register: enable_tls12 loop: - type: Server property: Enabled