mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
29 lines
923 B
YAML
29 lines
923 B
YAML
{% if grains['role'] in ['so-node', 'so-heavynode'] %}
|
|
{%- set elasticsearch = salt['pillar.get']('elasticsearch:mainip', '') -%}
|
|
{% elif grains['role'] in ['so-eval', 'so-managersearch', 'so-standalone'] %}
|
|
{%- set elasticsearch = salt['pillar.get']('manager:mainip', '') -%}
|
|
{%- endif %}
|
|
|
|
---
|
|
# Remember, leave a key empty if there is no value. None will be a string,
|
|
# not a Python "NoneType"
|
|
client:
|
|
hosts:
|
|
- {{elasticsearch}}
|
|
port: 9200
|
|
url_prefix:
|
|
{% if grains['role'] in ['so-node', 'so-heavynode'] %} use_ssl: True{% else %} use_ssl: False{% endif %}
|
|
certificate:
|
|
client_cert:
|
|
client_key:
|
|
{% if grains['role'] in ['so-node', 'so-heavynode'] %} ssl_no_validate: True{% else %} ssl_no_validate: False{% endif %}
|
|
http_auth:
|
|
timeout: 30
|
|
master_only: False
|
|
|
|
logging:
|
|
loglevel: INFO
|
|
logfile: '/var/log/curator/curator.log'
|
|
logformat: default
|
|
blacklist: ['elasticsearch', 'urllib3']
|