formula-traefik/traefik/files/traefik.toml

8 lines
199 B
TOML
Raw Normal View History

2018-05-17 23:36:22 -04:00
{% set config = pillar.get('traefik.config', {}) -%}
{% for section in config.items() -%}
2018-05-17 23:18:00 -04:00
[{{ section }}]
2018-05-17 22:52:46 -04:00
{% for key, val in section.iteritems() -%}
{{ key }} = {{ val }}
{% endfor -%}
{% endfor -%}