From 22da9c460b2cbdfdf9d94d28e26bfb6c8022a154 Mon Sep 17 00:00:00 2001 From: liza-mae Date: Wed, 16 Jan 2019 15:24:24 -0700 Subject: [PATCH] Update for elasticsearch security settings names (#81) --- .../tasks/linux/xpack_elasticsearch_config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/xpack_elasticsearch/tasks/linux/xpack_elasticsearch_config.yml b/ansible/roles/xpack_elasticsearch/tasks/linux/xpack_elasticsearch_config.yml index a05db7f633648..0fcd3ac8f5fe2 100644 --- a/ansible/roles/xpack_elasticsearch/tasks/linux/xpack_elasticsearch_config.yml +++ b/ansible/roles/xpack_elasticsearch/tasks/linux/xpack_elasticsearch_config.yml @@ -44,7 +44,7 @@ xpack.license.self_generated.type: trial xpack.security.http.ssl.enabled: true xpack.security.authc.token.enabled: false - xpack.ssl.key: {{ elasticsearch_xpack_config_dir }}/node/node.key - xpack.ssl.certificate: {{ elasticsearch_xpack_config_dir }}/node/node.crt - xpack.ssl.certificate_authorities: [ '{{ elasticsearch_xpack_config_dir }}/ca/ca.crt' ] + xpack.security.http.ssl.key: {{ elasticsearch_xpack_config_dir }}/node/node.key + xpack.security.http.ssl.certificate: {{ elasticsearch_xpack_config_dir }}/node/node.crt + xpack.security.http.ssl.certificate_authorities: [ '{{ elasticsearch_xpack_config_dir }}/ca/ca.crt' ] become: '{{ elasticsearch_run_as_root | default(omit) }}'