Fixed wrong variable specification format in examples (#55252)

Signed-off-by: Hideki Saito <saito@fgrep.org>
This commit is contained in:
Hideki Saito 2019-04-16 05:18:11 +09:00 committed by AlanCoding
parent df0bd0797c
commit ba8bd25da2
No known key found for this signature in database
GPG Key ID: FD2C3C012A72926B
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ EXAMPLES = '''
- name: Wait for job max 120s
tower_job_wait:
job_id: job.id
job_id: "{{ job.id }}"
timeout: 120
# Launch job template with inventory and credential for prompt on launch
@ -78,7 +78,7 @@ EXAMPLES = '''
register: job
- name: Wait for job max 120s
tower_job_wait:
job_id: job.id
job_id: "{{ job.id }}"
timeout: 120
'''

View File

@ -49,7 +49,7 @@ EXAMPLES = '''
- name: Wait for job max 120s
tower_job_wait:
job_id: job.id
job_id: "{{ job.id }}"
timeout: 120
'''