mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
9 lines
510 B
Django/Jinja
9 lines
510 B
Django/Jinja
{% set idh_services = salt['pillar.get']('idh:services', []) %}
|
|
|
|
{% import_yaml "idh/defaults/defaults.yaml" as OPENCANARYCONFIG with context %}
|
|
{% for service in idh_services %}
|
|
{% import_yaml "idh/defaults/" ~ service ~ ".defaults.yaml" as SERVICECONFIG with context %}
|
|
{% do salt['defaults.merge'](OPENCANARYCONFIG, SERVICECONFIG, in_place=True) %}
|
|
{% endfor %}
|
|
|
|
{% set OPENCANARYCONFIG = salt['pillar.get']('idh:opencanary:config', default=OPENCANARYCONFIG.idh.opencanary.config, merge=True) %} |