In Ansible's documentation, they are using the map
keyword: http://docs.ansible.com/set_fact_module.html
In Ansible's documentation, I cannot find any information about map
What is it?
In Ansible's documentation, they are using the map
keyword: http://docs.ansible.com/set_fact_module.html
In Ansible's documentation, I cannot find any information about map
What is it?
In the example of:
the
map
is actually a Jinja2 filter and more information can be found per the Jinja2 official documentation:In fact, in all constructions such as
{{ variable_name | something_here }}
, we're actually saying "passvariable_name
to the filter namedsomething_here
" and return the result.