Trying to fix config parser
This commit is contained in:
parent
6ef19635d1
commit
5c7a9c5c09
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
{% for section in salt['pillar.get']('traefik:config') -%}
|
{% set config = pillar.get('traefik.config', {}) -%}
|
||||||
|
{% for section in config.items() -%}
|
||||||
[{{ section }}]
|
[{{ section }}]
|
||||||
{% for key, val in section.iteritems() -%}
|
{% for key, val in section.iteritems() -%}
|
||||||
{{ key }} = {{ val }}
|
{{ key }} = {{ val }}
|
||||||
|
|
Loading…
Reference in a new issue