mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-08 11:43:10 +00:00
Update faq.rst
Minor changes to spacing and names of variables
This commit is contained in:
@@ -340,11 +340,11 @@ as this made it hard to distinguish between an undefined variable and a string.
|
||||
|
||||
Another rule is 'moustaches don't stack'. We often see this::
|
||||
|
||||
{{ somvar_{{other_var}} }}
|
||||
{{ somevar_{{other_var}} }}
|
||||
|
||||
The above DOES NOT WORK, if you need to use a dynamic variable use the hostvars or vars dictionary as appropriate::
|
||||
|
||||
{{ hostvars[inventory_hostname]['somevar_' + other_var] }}
|
||||
{{ hostvars[inventory_hostname]['somevar_' + other_var] }}
|
||||
|
||||
|
||||
.. _i_dont_see_my_question:
|
||||
|
||||
Reference in New Issue
Block a user