Signed-off-by: Hideki Saito <saito@fgrep.org>
(cherry picked from commit 83f20e0ea0
)
This commit is contained in:
parent
30906ff632
commit
65035e2149
3 changed files with 5 additions and 3 deletions
2
changelogs/fragments/tower_job_wait-wrong_examples.yml
Normal file
2
changelogs/fragments/tower_job_wait-wrong_examples.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- tower_job_wait - Fixed wrong variable specification in examples
|
|
@ -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
|
||||
'''
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ EXAMPLES = '''
|
|||
|
||||
- name: Wait for job max 120s
|
||||
tower_job_wait:
|
||||
job_id: job.id
|
||||
job_id: "{{ job.id }}"
|
||||
timeout: 120
|
||||
'''
|
||||
|
||||
|
|
Loading…
Reference in a new issue