ansible-role-renovate/templates/srv/docker/renovate/config.json.j2

11 lines
234 B
Plaintext
Raw Normal View History

2022-04-27 16:55:07 +00:00
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
{
{% for key, value in renovate_config.items() %}
{% if value | bool %}
"{{ key }}": {{ value | lower }},
{% else %}
"{{ key }}": "{{ value }}",
{% endif %}
{% endfor %}
}