mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 17:52:46 +01:00
16 lines
374 B
Django/Jinja
16 lines
374 B
Django/Jinja
{% from 'vars/elasticsearch.map.jinja' import ELASTICSEARCH_GLOBALS %}
|
|
{% from 'vars/sensor.map.jinja' import SENSOR_GLOBALS %}
|
|
|
|
{% set ROLE_GLOBALS = {} %}
|
|
|
|
{% set IMPORT_GLOBALS =
|
|
[
|
|
ELASTICSEARCH_GLOBALS,
|
|
SENSOR_GLOBALS
|
|
]
|
|
%}
|
|
|
|
{% for sg in IMPORT_GLOBALS %}
|
|
{% do salt['defaults.merge'](ROLE_GLOBALS, sg, merge_lists=False, in_place=True) %}
|
|
{% endfor %}
|