7 lines
203 B
TOML
7 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 -%}
|