Skip to content

Instantly share code, notes, and snippets.

@isweluiz
Created October 22, 2019 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isweluiz/278fde727a7f5ae56ecfbc00733b5a17 to your computer and use it in GitHub Desktop.
Save isweluiz/278fde727a7f5ae56ecfbc00733b5a17 to your computer and use it in GitHub Desktop.
Configuration Curator - cluster SSL
---
client:
hosts:
- "es_coordinating_01.singhaiuklimited.com"
port: 9200
url_prefix:
use_ssl: True
# The certificate file is the CA certificate used to sign all ES node certificates.
# Use same CA certificate to generate and sign the certificate running curator (specified in properties client_cert and client_key)
certificate: '/work/elk/elasticsearch-6.3.2/config/x-pack/certificate-bundle/ca/ca.crt'
client_cert: '/work/elk/elasticsearch-6.3.2/config/x-pack/certificate-bundle/myhostname/myhostname.crt'
client_key: '/work/elk/elasticsearch-6.3.2/config/x-pack/certificate-bundle/myhostname/myhostname.key'
ssl_no_validate: False
# Username password to connect to ES using basic auth
http_auth: "username:password"
timeout: 30
master_only: False
logging:
loglevel: INFO
logfile:
logformat: default
blacklist: ['elasticsearch', 'urllib3']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment