Skip to content

Commit

Permalink
Change requirement for OpenSearch dedicated master instance type
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
clarissalimab committed Feb 10, 2025
1 parent 1d7c06a commit 0b15b0a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion opensearch-variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 0b15b0a

Please sign in to comment.