Files
securityonion/salt/logstash/pipelines/config/so/9400_output_suricata.conf.jinja
2021-03-03 14:30:45 -05:00

19 lines
522 B
Django/Jinja

{%- if grains['role'] == 'so-eval' -%}
{%- set ES = salt['pillar.get']('manager:mainip', '') -%}
{%- else %}
{%- set ES = salt['pillar.get']('elasticsearch:mainip', '') -%}
{%- endif %}
output {
if [module] =~ "suricata" and "import" not in [tags] {
elasticsearch {
pipeline => "%{module}.%{dataset}"
hosts => "{{ ES }}"
index => "so-ids"
template_name => "so-ids"
template => "/templates/so-ids-template.json"
ssl => true
ssl_certificate_verification => false
}
}
}