formula-traefik/traefik/files/traefik.toml

8 lines
199 B
TOML

{% set config = pillar.get('traefik.config', {}) -%}
{% for section in config.items() -%}
[{{ section }}]
{% for key, val in section.iteritems() -%}
{{ key }} = {{ val }}
{% endfor -%}
{% endfor -%}