Context data wrapped with tojson filter.tags/v0.9.0
@@ -22,11 +22,11 @@ logrotate-{{ key }}: | |||
- template: jinja | |||
- context: | |||
{% if value is mapping %} | |||
path: {{ value.get('path', [key]) }} | |||
data: {{ value.get('config', []) }} | |||
path: {{ value.get('path', [key]) | json }} | |||
data: {{ value.get('config', []) | json }} | |||
{% else %} | |||
path: [ {{ key }} ] | |||
data: {{ value }} | |||
path: [ {{ key | json }} ] | |||
data: {{ value | json }} | |||
{% endif %} | |||
{% endif %} | |||
{%- endfor -%} |