From 755bdc4f157968a602bb5568dc21fbed06a361d3 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 10 Jun 2019 17:27:23 +0200 Subject: [PATCH] acme_certificate: fix docs (#57557) (#57568) * Fix indentation. * Forgot when condition for second acme_certificate call. (cherry picked from commit 9d67f476e67d201d93130d27ddefb7d01a16d496) --- lib/ansible/modules/crypto/acme/acme_certificate.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/crypto/acme/acme_certificate.py b/lib/ansible/modules/crypto/acme/acme_certificate.py index 04a1c940f32..c7fc28809cf 100644 --- a/lib/ansible/modules/crypto/acme/acme_certificate.py +++ b/lib/ansible/modules/crypto/acme/acme_certificate.py @@ -237,7 +237,7 @@ EXAMPLES = R''' # wait: yes # # Note: route53 requires TXT entries to be enclosed in quotes # value: "{{ sample_com_challenge.challenge_data['sample.com']['dns-01'].resource_value | regex_replace('^(.*)$', '\"\\1\"') }}" -# when: sample_com_challenge is changed +# when: sample_com_challenge is changed # # Alternative way: # @@ -251,8 +251,8 @@ EXAMPLES = R''' # # Note: item.value is a list of TXT entries, and route53 # # requires every entry to be enclosed in quotes # value: "{{ item.value | map('regex_replace', '^(.*)$', '\"\\1\"' ) | list }}" -# with_dict: sample_com_challenge.challenge_data_dns -# when: sample_com_challenge is changed +# with_dict: sample_com_challenge.challenge_data_dns +# when: sample_com_challenge is changed - name: Let the challenge be validated and retrieve the cert and intermediate certificate acme_certificate: @@ -266,6 +266,7 @@ EXAMPLES = R''' acme_directory: https://acme-v01.api.letsencrypt.org/directory remaining_days: 60 data: "{{ sample_com_challenge }}" + when: sample_com_challenge is changed ''' RETURN = '''