{% for sections in transforms_conf %}
[{{ sections.section }}]
{% for options in sections.options %}
{% for option, value in options.iteritems() %}
{{ option }} = {{ value }}
{% endfor %}
{% endfor %}
{% endfor %}
With the following variables :
transforms_conf:
- section: setnull
options:
- REGEX: "\\b/exclude1/\\b|\\b/exclude2/\\b"
- DEST_KEY: queue
- FORMAT: nullQueue
Which I'm trying to get this as output :
[setnull]
REGEX = \b/exclude1/\b|\b/exclude2/\b
DEST_KEY = queue
FORMAT = nullQueue
Although I only get this in the results :
[setnull]
REGEX = \b/exclude1/\b
DEST_KEY = queue
FORMAT = nullQueue