Update Curator configuration to align with requirements for Curator 8.0.x

This commit is contained in:
weslambert
2023-03-02 08:46:52 -05:00
committed by GitHub
parent 204f423051
commit 06d1f0f913

View File

@@ -15,20 +15,25 @@
--- ---
# Remember, leave a key empty if there is no value. None will be a string, # Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType" # not a Python "NoneType"
client: elasticsearch:
client:
hosts: hosts:
- {{elasticsearch}} - https://{{elasticsearch}}:9200
port: 9200 cloud_id:
username: "{{ ES_USER }}" ca_certs:
password: "{{ ES_PASS }}"
url_prefix:
use_ssl: True
certificate:
client_cert: client_cert:
client_key: client_key:
ssl_no_validate: True verify_certs: False
timeout: 30 request_timeout: 30
other_settings:
api_key:
id:
api_key:
master_only: False master_only: False
{%- if salt['pillar.get']('elasticsearch:auth:enabled') is sameas true %}
username: "{{ ES_USER }}"
password: "{{ ES_PASS }}"
{%- endif %}
logging: logging:
loglevel: INFO loglevel: INFO