add optinal region to config schema

Signed-off-by: Andrew Ochsner <andrew.ochsner@cognizant.com>
This commit is contained in:
Andrew Ochsner
2023-10-29 14:07:55 -05:00
parent 6fc10ed06e
commit 1a9270c405
@@ -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;
}
/**