From f68a45ca9a1036ba3bd4ee35e3a86078319be23d Mon Sep 17 00:00:00 2001 From: Tristan Bessoussa Date: Sun, 13 Nov 2016 01:23:11 +0100 Subject: [PATCH] Fixed wrong variable name in the let's encrypt doc (#3398) It could lead to unwanted error when dummy-paste to try this module. --- lib/ansible/modules/extras/web_infrastructure/letsencrypt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/extras/web_infrastructure/letsencrypt.py b/lib/ansible/modules/extras/web_infrastructure/letsencrypt.py index 499901334a..8827012662 100644 --- a/lib/ansible/modules/extras/web_infrastructure/letsencrypt.py +++ b/lib/ansible/modules/extras/web_infrastructure/letsencrypt.py @@ -122,8 +122,8 @@ EXAMPLES = ''' # for example: # # - copy: -# dest: /var/www/html/{{ sample_com_http_challenge['challenge_data']['sample.com']['http-01']['resource'] }} -# content: "{{ sample_com_http_challenge['challenge_data']['sample.com']['http-01']['resource_value'] }}" +# dest: /var/www/html/{{ sample_com_challenge['challenge_data']['sample.com']['http-01']['resource'] }} +# content: "{{ sample_com_challenge['challenge_data']['sample.com']['http-01']['resource_value'] }}" # when: sample_com_challenge|changed - letsencrypt: