Skip to content

Commit 0b15b0a

Browse files
committed
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.
1 parent 1d7c06a commit 0b15b0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

opensearch-variables.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ variable "es_instance_count" {
1313
variable "es_dedicated_master_type" {
1414
type = string
1515
description = "Instance type of the dedicated main nodes in the cluster."
16+
default = ""
1617
}
1718

1819
variable "es_instance_type" {
1920
type = string
2021
description = "Instance type of data nodes in the cluster."
21-
default = ""
22+
default = "t3.small.search"
2223
}
2324

2425
variable "es_volume_type" {

0 commit comments

Comments
 (0)