You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/includes/test_includes2.yml

23 lines
539 B
YAML

- 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
roles:
- role: test_includes
tags: test_includes
tasks:
- include: roles/test_includes/tasks/not_a_role_task.yml
- include: roles/test_includes/tasks/empty.yml
- assert:
that:
- "ca == 33000"
- "cb == 33001"
- "cc == 33002"