We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5059667 commit 99e060fCopy full SHA for 99e060f
main.tf
@@ -115,12 +115,12 @@ resource "aws_opensearch_domain" "this" {
115
116
content {
117
count = try(node_config.value.count, null)
118
- enabled = try(node_config.value.enabled, null)
+ enabled = try(node_config.value.enabled, true)
119
type = try(node_config.value.type, null)
120
}
121
122
123
- node_type = try(node_options.key, node_options.value.node_type, null)
+ node_type = try(node_options.value.node_type, node_options.key, null)
124
125
126
0 commit comments