Importing task files
Perhaps you have a set of tasks that you want to share among multiple playbooks:
#common_tasks.yml
---
- name: some task
command: /bin/echo
- name: other task
command: /bin/ifconfig
In other playbook, you can then:
tasks:
- import_tasks: common_tasks.yml
or
- include_tasks: common_tasks.yml