From 0b15b0a2d70a1a08ce486fa208477f7341fc57f3 Mon Sep 17 00:00:00 2001 From: Clarissa Borges Date: Mon, 10 Feb 2025 18:13:46 -0300 Subject: [PATCH] Change requirement for OpenSearch dedicated master instance type This changes the dedicated master so it is optional and not created by default. It also makes the dedicated master instance type variable optional, as we won't necessarily have it enabled. --- opensearch-variables.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/opensearch-variables.tf b/opensearch-variables.tf index 07489eb..1ad3f79 100644 --- a/opensearch-variables.tf +++ b/opensearch-variables.tf @@ -13,12 +13,13 @@ variable "es_instance_count" { variable "es_dedicated_master_type" { type = string description = "Instance type of the dedicated main nodes in the cluster." + default = "" } variable "es_instance_type" { type = string description = "Instance type of data nodes in the cluster." - default = "" + default = "t3.small.search" } variable "es_volume_type" {