Note
This module is part of ansible-base
and included in all Ansible installations. In most cases, you can use the short module name import_tasks even without specifying the collections:
keyword. Despite that, we recommend you use the FQCN for easy linking to the module documentation and to avoid conflicting with other collections that may have the same module name.
New in version 2.4: of ansible.builtin
Parameter | Choices/Defaults | Comments |
---|---|---|
free-form string | The name of the imported file is specified directly without any other option. Most keywords, including loops and conditionals, only applied to the imported tasks, not to this statement itself. If you need any of those to apply, use ansible.builtin.include_tasks instead. |
Note
See also
The official documentation on the ansible.builtin.import_playbook module.
The official documentation on the ansible.builtin.import_role module.
The official documentation on the ansible.builtin.include_role module.
The official documentation on the ansible.builtin.include_tasks module.
More information related to including and importing playbooks, roles and tasks.
- hosts: all tasks: - debug: msg: task1 - name: Include task list in play import_tasks: stuff.yaml - debug: msg: task10 - hosts: all tasks: - debug: msg: task1 - name: Apply conditional to all imported tasks import_tasks: stuff.yaml when: hostvar is defined
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/ansible/builtin/import_tasks_module.html