blob: b7d0edd4aea0fa3cb48b0c3a99917fefb36da826 (
plain)
1
2
3
4
5
6
7
8
9
|
---
- name: Importing another playbook
ansible.builtin.import_playbook: playbook-imported.yml
- name: Importing playbook from collection
import_playbook: community.molecule.validate # noqa: fqcn
- name: Importing playbook using jinja2
import_playbook: "{{ 'community.molecule.validate' }}" # noqa: fqcn
|