From 1280de7e1df39c2ef7bf5845778bc8b5b4617859 Mon Sep 17 00:00:00 2001 From: Ben Partridge Date: Wed, 24 Feb 2021 14:54:08 +1100 Subject: [PATCH] DCD-1157: Update elasticsearch endpoint to have customisable protocol to allow for HTTPS --- group_vars/aws_node_local.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/group_vars/aws_node_local.yml b/group_vars/aws_node_local.yml index b331964..732434c 100644 --- a/group_vars/aws_node_local.yml +++ b/group_vars/aws_node_local.yml @@ -139,7 +139,8 @@ atl_tomcat_secure: "{{ lookup('env', 'ATL_TOMCAT_SECURE') or 'false' }}" atl_fileserver_host: "{{ lookup('env', 'ATL_FILESERVER_IP') }}" atl_elasticsearch_host: "{{ lookup('env', 'ATL_ELASTICSEARCH_HOST') }}" -atl_elasticsearch_endpoint: "http://{{ atl_elasticsearch_host }}" +atl_elasticsearch_protocol: "{{ lookup('env', 'ATL_ELASTICSEARCH_PROTOCOL') }}" +atl_elasticsearch_endpoint: "{{ atl_elasticsearch_protocol }}://{{ atl_elasticsearch_host }}" atl_elasticsearch_s3_bucket: "{{ lookup('env', 'ATL_ELASTICSEARCH_S3_BUCKET') }}" atl_nfs_server_device: "{{ lookup('env', 'ATL_NFS_SERVER_DEVICE') }}"