Add SSL/TLS support

This commit introduces SSL/TLS support for the elastic search transport
layer. It assumes certificates are generated externally, and only
handles uploading and configuring the server accordingly.
This commit is contained in:
Aeva Black 2019-06-27 13:53:23 -07:00
parent 5b1d028bd2
commit d7efa2048a
4 changed files with 53 additions and 0 deletions

View file

@ -40,3 +40,11 @@ es_debian_startup_timeout: 10
# JVM custom parameters
es_jvm_custom_parameters: ''
# SSL/TLS parameters
es_enable_http_ssl: false
es_enable_transport_ssl: false
es_ssl_key: ""
es_ssl_certificate: ""
es_ssl_certificate_authority: ""
es_ssl_certificate_path: "/etc/elasticsearch/certs"