From eb54b80a92e38b80fd351bb8af2dd646e3ba56eb Mon Sep 17 00:00:00 2001 From: Fabio Alessandro Locati Date: Fri, 2 Dec 2016 15:35:20 +0000 Subject: [PATCH] Unquote urls in YAML - system (#5796) --- lib/ansible/modules/system/authorized_key.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/system/authorized_key.py b/lib/ansible/modules/system/authorized_key.py index 6cfd856e9a..7ac85eae0d 100644 --- a/lib/ansible/modules/system/authorized_key.py +++ b/lib/ansible/modules/system/authorized_key.py @@ -99,7 +99,7 @@ EXAMPLES = ''' # Using github url as key source - authorized_key: user: charlie - key: 'https://github.com/charlie.keys' + key: https://github.com/charlie.keys # Using alternate directory locations: - authorized_key: @@ -126,7 +126,7 @@ EXAMPLES = ''' # Using validate_certs: - authorized_key: user: charlie - key: 'https://github.com/user.keys' + key: https://github.com/user.keys validate_certs: no # Set up authorized_keys exclusively with one key