mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix example since lookup/query is not filter (#55)
See also ansible/ansible#68478
This commit is contained in:
parent
76880e2403
commit
f799aa8356
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ DOCUMENTATION = '''
|
|||
|
||||
EXAMPLES = """
|
||||
- name: Example of the change in the description
|
||||
debug: msg="{{ [1,2,3]|lookup('cartesian', [a, b])}}"
|
||||
debug: msg="{{ lookup('cartesian', [1,2,3], [a, b])}}"
|
||||
|
||||
- name: loops over the cartesian product of the supplied lists
|
||||
debug: msg="{{item}}"
|
||||
|
|
Loading…
Reference in a new issue