Fix invalid yaml in collections_using.rst (#73727)
Fix invalid quoting.
This commit is contained in:
parent
158d28a254
commit
1f2f292290
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ In a playbook, you can control the collections Ansible searches for modules and
|
|||
option1: value
|
||||
|
||||
- debug:
|
||||
msg: '{{ lookup("my_namespace.my_collection.lookup1", 'param1')| my_namespace.my_collection.filter1 }}'
|
||||
msg: '{{ lookup("my_namespace.my_collection.lookup1", "param1")| my_namespace.my_collection.filter1 }}'
|
||||
|
||||
The ``collections`` keyword merely creates an ordered 'search path' for non-namespaced plugin and role references. It does not install content or otherwise change Ansible's behavior around the loading of plugins or roles. Note that an FQCN is still required for non-action or module plugins (for example, lookups, filters, tests).
|
||||
|
||||
|
|
Loading…
Reference in a new issue