From 392d41cdfc989d08cf5b79ea9a20e1f82665b447 Mon Sep 17 00:00:00 2001 From: "mark.j.leonard" Date: Wed, 26 Sep 2018 11:58:30 +0100 Subject: Implement client authentication to ElasticSearch Add configuration to the existing Elastic Search properties to allow Basic Authentication and/or TLS (SSL) connectivity using HTTPS. The new configuration is optional and this commit is intended to be backwards compatible with existing deployments. Change-Id: I19ec3da9ff810c3f6eabd6f5faf71adde182c861 Issue-ID: AAI-1650 Signed-off-by: mark.j.leonard --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 506cc05..ae2127d 100644 --- a/README.md +++ b/README.md @@ -100,13 +100,20 @@ Create this file with exactly the contents below: _elastic-search.properties_ -This file tells the _Search Data Service_ how to communicate with the ElasticSearch data store which it will use for its back end. +This properties file configures the _Search Data Service_ for communication with ElasticSearch. The contents of this file will be determined by your ElasticSearch deployment: - es-cluster-name=<> - es-ip-address=<> - ex.http-port=9200 - + es.cluster-name=<> + es.ip-address=<> + es.http-port=9200 + # Optional parameters + es.uri-scheme=<> + es.trust-store=<> + es.trust-store-password=<> + es.key-store=<> + es.key-store-password=<> + es.auth-user=<> + es.auth-password=<> ##### Contents of the /opt/app/search-data-service/app-config/auth Directory -- cgit 1.2.3-korg