Fix invalid yaml in collections_using.rst (#73727)

Fix invalid quoting.
pull/73757/head
Brian Williams 4 years ago committed by GitHub
parent 158d28a254
commit 1f2f292290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save