Skip to content

Commit 205f169

Browse files
committed
Declare TLS key/certs separately for http/transport
Update the security configuration with the changes brought in elastic/elasticsearch#36846
1 parent b63d4cd commit 205f169

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

cars/v1/x_pack/security/templates/config/elasticsearch.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@ xpack.security.authc.realms:
55
file.file1:
66
order: 0
77

8-
xpack.security.transport.ssl.enabled: true
98
xpack.security.http.ssl.enabled: true
9+
xpack.security.http.ssl.key: {{install_root_path}}/config/x-pack/{{node_name}}/{{node_name}}.key
10+
xpack.security.http.ssl.certificate: {{install_root_path}}/config/x-pack/{{node_name}}/{{node_name}}.crt
11+
xpack.security.http.ssl.certificate_authorities: [ "{{install_root_path}}/config/x-pack/ca/ca.crt" ]
1012

11-
xpack.ssl.key: {{install_root_path}}/config/x-pack/{{node_name}}/{{node_name}}.key
12-
xpack.ssl.certificate: {{install_root_path}}/config/x-pack/{{node_name}}/{{node_name}}.crt
13-
xpack.ssl.certificate_authorities: [ "{{install_root_path}}/config/x-pack/ca/ca.crt" ]
13+
xpack.security.transport.ssl.enabled: true
14+
xpack.security.transport.ssl.key: {{install_root_path}}/config/x-pack/{{node_name}}/{{node_name}}.key
15+
xpack.security.transport.ssl.certificate: {{install_root_path}}/config/x-pack/{{node_name}}/{{node_name}}.crt
16+
xpack.security.transport.ssl.certificate_authorities: [ "{{install_root_path}}/config/x-pack/ca/ca.crt" ]

0 commit comments

Comments
 (0)