formula-traefik/traefik/files/traefik.toml
2018-05-17 23:40:37 -04:00

8 lines
203 B
TOML

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