mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 22:46:01 -03:30
Fixed wrong variable specification format in examples (#55252)
Signed-off-by: Hideki Saito <saito@fgrep.org>
This commit is contained in:
@@ -66,7 +66,7 @@ EXAMPLES = '''
|
|||||||
|
|
||||||
- name: Wait for job max 120s
|
- name: Wait for job max 120s
|
||||||
tower_job_wait:
|
tower_job_wait:
|
||||||
job_id: job.id
|
job_id: "{{ job.id }}"
|
||||||
timeout: 120
|
timeout: 120
|
||||||
|
|
||||||
# Launch job template with inventory and credential for prompt on launch
|
# Launch job template with inventory and credential for prompt on launch
|
||||||
@@ -78,7 +78,7 @@ EXAMPLES = '''
|
|||||||
register: job
|
register: job
|
||||||
- name: Wait for job max 120s
|
- name: Wait for job max 120s
|
||||||
tower_job_wait:
|
tower_job_wait:
|
||||||
job_id: job.id
|
job_id: "{{ job.id }}"
|
||||||
timeout: 120
|
timeout: 120
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ EXAMPLES = '''
|
|||||||
|
|
||||||
- name: Wait for job max 120s
|
- name: Wait for job max 120s
|
||||||
tower_job_wait:
|
tower_job_wait:
|
||||||
job_id: job.id
|
job_id: "{{ job.id }}"
|
||||||
timeout: 120
|
timeout: 120
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user