Created
October 22, 2019 15:34
-
-
Save isweluiz/278fde727a7f5ae56ecfbc00733b5a17 to your computer and use it in GitHub Desktop.
Configuration Curator - cluster SSL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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