nsd-formula/nsd/files/default/pillar-configuration.conf.jinja
Georg Pfuetzenreuter 4267fd2482
feat(config): pillar based config template
Allow management of general configuration using pillar data.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2023-02-17 18:08:12 +01:00

7 lines
177 B
Django/Jinja

{%- for category, config in nsd.get('config_data').items() %}
{{ category }}:
{%- for option, value in config.items() %}
{{ option }}: {{ value }}
{%- endfor %}
{%- endfor %}