mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-08 18:22:47 +01:00
21 lines
657 B
Django/Jinja
21 lines
657 B
Django/Jinja
{%- from 'logstash/map.jinja' import LOGSTASH_REDIS_NODES with context %}
|
|
{%- set REDIS_PASS = salt['pillar.get']('redis:config:requirepass') %}
|
|
|
|
{%- for index in range(LOGSTASH_REDIS_NODES|length) %}
|
|
{%- for host in LOGSTASH_REDIS_NODES[index] %}
|
|
input {
|
|
redis {
|
|
host => '{{ host }}'
|
|
port => 9696
|
|
ssl => true
|
|
data_type => 'list'
|
|
key => 'logstash:unparsed'
|
|
type => 'redis-input'
|
|
threads => {{ THREADS }}
|
|
batch_count => {{ BATCH }}
|
|
password => '{{ REDIS_PASS }}'
|
|
}
|
|
}
|
|
{% endfor %}
|
|
{% endfor -%}
|