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