mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-04-27 06:57:50 +02:00
23 lines
670 B
Django/Jinja
23 lines
670 B
Django/Jinja
{%- if grains['role'] == 'so-eval' -%}
|
|
{%- set ES = salt['pillar.get']('manager:mainip', '') -%}
|
|
{%- else %}
|
|
{%- set ES = salt['pillar.get']('elasticsearch:mainip', '') -%}
|
|
{%- endif %}
|
|
{% set FEATURES = salt['pillar.get']('elastic:features', False) %}
|
|
output {
|
|
if [module] =~ "syslog" {
|
|
elasticsearch {
|
|
pipeline => "%{module}"
|
|
hosts => "{{ ES }}"
|
|
index => "so-syslog"
|
|
template_name => "so-syslog"
|
|
template => "/templates/so-syslog-template.json"
|
|
template_overwrite => true
|
|
{%- if grains['role'] in ['so-node','so-heavynode'] %}
|
|
ssl => true
|
|
ssl_certificate_verification => false
|
|
{%- endif %}
|
|
}
|
|
}
|
|
}
|