From 3d0225712a7291af0df9e769f8806a3736f9d7dd Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Thu, 17 May 2018 23:58:14 -0400 Subject: [PATCH] Trying to fix config parser --- traefik/files/traefik.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/traefik/files/traefik.toml b/traefik/files/traefik.toml index dddd172..048683f 100644 --- a/traefik/files/traefik.toml +++ b/traefik/files/traefik.toml @@ -2,7 +2,7 @@ {%- set config = salt['pillar.get']('traefik:config', {}) -%} -{% for section in config.iteritems() -%} +{% for section in config.values() -%} [{{ section }}] {% for key, val in section.iteritems() -%} {{ key }} = {{ val }}