provider/aws: Fix wrong config in ES domain acceptance test (#13362)
This commit is contained in:
parent
9ce2b12ec9
commit
1c0cd0dd8f
|
@ -228,10 +228,6 @@ func testAccESDomainConfig_complex(randInt int) string {
|
||||||
resource "aws_elasticsearch_domain" "example" {
|
resource "aws_elasticsearch_domain" "example" {
|
||||||
domain_name = "tf-test-%d"
|
domain_name = "tf-test-%d"
|
||||||
|
|
||||||
cluster_config {
|
|
||||||
instance_type = "r3.large.elasticsearch"
|
|
||||||
}
|
|
||||||
|
|
||||||
advanced_options {
|
advanced_options {
|
||||||
"indices.fielddata.cache.size" = 80
|
"indices.fielddata.cache.size" = 80
|
||||||
}
|
}
|
||||||
|
@ -243,6 +239,7 @@ resource "aws_elasticsearch_domain" "example" {
|
||||||
cluster_config {
|
cluster_config {
|
||||||
instance_count = 2
|
instance_count = 2
|
||||||
zone_awareness_enabled = true
|
zone_awareness_enabled = true
|
||||||
|
instance_type = "r3.large.elasticsearch"
|
||||||
}
|
}
|
||||||
|
|
||||||
snapshot_options {
|
snapshot_options {
|
||||||
|
|
Loading…
Reference in New Issue