From e36d2ae11f39eeb14527c97ef9ea1e20e5b6ea54 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Tue, 13 Feb 2018 15:27:52 -0500 Subject: [PATCH] ES salt module - Add curator config --- salt/elasticsearch/files/curator/curator.yml | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/salt/elasticsearch/files/curator/curator.yml b/salt/elasticsearch/files/curator/curator.yml index e69de29bb..dc8b69309 100644 --- a/salt/elasticsearch/files/curator/curator.yml +++ b/salt/elasticsearch/files/curator/curator.yml @@ -0,0 +1,22 @@ +--- +# 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: + use_ssl: False + certificate: + client_cert: + client_key: + ssl_no_validate: False + http_auth: + timeout: 30 + master_only: False + +logging: + loglevel: INFO + logfile: '/var/log/curator/curator.log' + logformat: default + blacklist: ['elasticsearch', 'urllib3']