blob: 4c78a2ba718f10f74ed05f2262e7d038137de143 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: Fixture for testing adjacent plugins
hosts: localhost
tasks:
- name: Call adjacent action plugin
some_action: {}
- name: Call adjacent filter plugin
ansible.builtin.debug:
msg: "{{ 'foo' | some_filter }}"
|