From 1a9270c405b6a37e9114ac6603d1d1f8b9f6438d Mon Sep 17 00:00:00 2001 From: Andrew Ochsner Date: Sun, 29 Oct 2023 14:07:55 -0500 Subject: [PATCH] add optinal region to config schema Signed-off-by: Andrew Ochsner --- plugins/search-backend-module-elasticsearch/config.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/search-backend-module-elasticsearch/config.d.ts b/plugins/search-backend-module-elasticsearch/config.d.ts index 95f1588fb4..fa05378259 100644 --- a/plugins/search-backend-module-elasticsearch/config.d.ts +++ b/plugins/search-backend-module-elasticsearch/config.d.ts @@ -115,6 +115,12 @@ export interface Config { * Eg. https://my-es-cluster.eu-west-1.es.amazonaws.com */ node: string; + + /** + * The AWS region. + * Only needed if using a custom DNS record + */ + region?: string; } /**