Skip to content

Commit

Permalink
Merge pull request #7267 from terraform-providers/td-aws_elasticsearc…
Browse files Browse the repository at this point in the history
…h_domain-0.12-syntax

tests/resource/aws_elasticsearch_domain: Ensure advanced_options configurations use equals
  • Loading branch information
bflad authored Jan 23, 2019
2 parents e1a9f5e + 30a40e5 commit f817b7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions aws/resource_aws_elasticsearch_domain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ func testAccESDomainConfig_ClusterUpdate(randInt, instanceInt, snapshotInt int)
resource "aws_elasticsearch_domain" "example" {
domain_name = "tf-test-%d"
advanced_options {
advanced_options = {
"indices.fielddata.cache.size" = 80
}
Expand Down Expand Up @@ -822,7 +822,7 @@ resource "aws_elasticsearch_domain" "example" {
elasticsearch_version = "6.0"
advanced_options {
advanced_options = {
"indices.fielddata.cache.size" = 80
}
Expand Down Expand Up @@ -868,7 +868,7 @@ resource "aws_elasticsearch_domain" "example" {
elasticsearch_version = "6.0"
advanced_options {
advanced_options = {
"indices.fielddata.cache.size" = 80
}
Expand Down Expand Up @@ -1026,7 +1026,7 @@ func testAccESDomainConfig_complex(randInt int) string {
resource "aws_elasticsearch_domain" "example" {
domain_name = "tf-test-%d"
advanced_options {
advanced_options = {
"indices.fielddata.cache.size" = 80
}
Expand Down

0 comments on commit f817b7e

Please sign in to comment.