Add option for invalid certificates
This commit is contained in:
parent
551d93b646
commit
d0064c6a88
8 changed files with 21 additions and 6 deletions
|
|
@ -40,7 +40,7 @@ xpack.security.transport.ssl.verification_mode: "{{ es_ssl_verification_mode }}"
|
|||
{% if es_ssl_keystore and es_ssl_truststore %}
|
||||
xpack.security.transport.ssl.keystore.path: "{{ es_ssl_certificate_path }}/{{ es_ssl_keystore | basename }}"
|
||||
xpack.security.transport.ssl.truststore.path: "{{ es_ssl_certificate_path }}/{{ es_ssl_truststore | basename }}"
|
||||
{% elif es_ssl_key and es_ssl_certificate%}
|
||||
{% elif es_ssl_key and es_ssl_certificate %}
|
||||
xpack.security.transport.ssl.key: "{{ es_ssl_certificate_path }}/{{ es_ssl_key | basename }}"
|
||||
xpack.security.transport.ssl.certificate: "{{ es_ssl_certificate_path }}/{{ es_ssl_certificate | basename }}"
|
||||
{% if es_ssl_certificate_authority %}
|
||||
|
|
@ -56,7 +56,7 @@ xpack.security.http.ssl.enabled: true
|
|||
{% if es_ssl_keystore and es_ssl_truststore %}
|
||||
xpack.security.http.ssl.keystore.path: "{{ es_ssl_certificate_path }}/{{ es_ssl_keystore | basename }}"
|
||||
xpack.security.http.ssl.truststore.path: "{{ es_ssl_certificate_path }}/{{ es_ssl_truststore | basename }}"
|
||||
{% elif es_ssl_key and es_ssl_certificate%}
|
||||
{% elif es_ssl_key and es_ssl_certificate %}
|
||||
xpack.security.http.ssl.key: "{{ es_ssl_certificate_path }}/{{ es_ssl_key | basename }}"
|
||||
xpack.security.http.ssl.certificate: "{{ es_ssl_certificate_path }}/{{ es_ssl_certificate | basename }}"
|
||||
{% if es_ssl_certificate_authority %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue