From e2c2a8f1a2d19f789034e2e1ecf36f48858ec0c4 Mon Sep 17 00:00:00 2001 From: Daniel Dehennin Date: Thu, 14 Jan 2021 20:35:46 +0000 Subject: [PATCH] fix(_mapdata): ensure map data is directly under `values` * Semi-automated using https://github.com/myii/ssf-formula/pull/287 --- sudoers/_mapdata/init.sls | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sudoers/_mapdata/init.sls b/sudoers/_mapdata/init.sls index ff36d95..2eecccb 100644 --- a/sudoers/_mapdata/init.sls +++ b/sudoers/_mapdata/init.sls @@ -6,9 +6,7 @@ {%- from tplroot ~ "/map.jinja" import sudoers with context %} {%- set _mapdata = { - "values": { - "sudoers": sudoers, - } + "values": sudoers, } %} {%- do salt["log.debug"]("### MAP.JINJA DUMP ###\n" ~ _mapdata | yaml(False)) %}