Verify playbook includes can take params.
This commit is contained in:
parent
a1e4f826ca
commit
f814e4e463
2 changed files with 11 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
- include: test_includes2.yml
|
- include: test_includes2.yml parameter1=asdf parameter2=jkl
|
||||||
|
|
|
@ -1,5 +1,14 @@
|
||||||
|
|
||||||
- hosts: testhost
|
- name: verify playbook includes can take parameters
|
||||||
|
hosts: testhost
|
||||||
|
tasks:
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- "parameter1 == 'asdf'"
|
||||||
|
- "parameter2 == 'jkl'"
|
||||||
|
|
||||||
|
- name: verify task include logic
|
||||||
|
hosts: testhost
|
||||||
gather_facts: True
|
gather_facts: True
|
||||||
roles:
|
roles:
|
||||||
- { role: test_includes, tags: test_includes }
|
- { role: test_includes, tags: test_includes }
|
||||||
|
|
Loading…
Reference in a new issue