On 20.04.2018 13:53, Ciobancai Vlad wrote:
{% for key, value in {{ item.iteritems() }} %}
   {{ key }}= {{ value }}
{% endfor %}

You are already in jinja template mode between {% %} so you can't use {{ }} there.

{% for key, value in item.iteritems() %}


--
Kai Stian Olstad

--
You received this message because you are subscribed to the Google Groups "Ansible 
Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/a9719ae904037e57ec42c9d38123a24b%40olstad.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to