Skip to content

Commit

Permalink
terrafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
gdavison committed May 24, 2023
1 parent 1898f46 commit 8a50eb9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion internal/service/opensearch/domain_policy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func buildDomainARN(name, partition, accId, region string) (string, error) {
func testAccDomainPolicyConfig_basic(randInt int, policy string) string {
return fmt.Sprintf(`
resource "aws_opensearch_domain" "test" {
domain_name = "tf-test-%d"
domain_name = "tf-test-%d"
cluster_config {
instance_type = "t2.small.search" # supported in both aws and aws-us-gov
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func testAccInboundConnectionAccepterConfig(name string) string {
pw := fmt.Sprintf("Aa1-%s", sdkacctest.RandString(10))
return fmt.Sprintf(`
resource "aws_opensearch_domain" "domain_1" {
domain_name = "%s-1"
domain_name = "%s-1"
cluster_config {
instance_type = "t3.small.search" # supported in both aws and aws-us-gov
Expand Down Expand Up @@ -108,7 +108,7 @@ resource "aws_opensearch_domain" "domain_1" {
}
resource "aws_opensearch_domain" "domain_2" {
domain_name = "%s-2"
domain_name = "%s-2"
cluster_config {
instance_type = "t3.small.search" # supported in both aws and aws-us-gov
Expand Down
4 changes: 2 additions & 2 deletions internal/service/opensearch/outbound_connection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func testAccOutboundConnectionConfig(name string) string {
pw := fmt.Sprintf("Aa1-%s", sdkacctest.RandString(10))
return fmt.Sprintf(`
resource "aws_opensearch_domain" "domain_1" {
domain_name = "%s-1"
domain_name = "%s-1"
cluster_config {
instance_type = "t3.small.search" # supported in both aws and aws-us-gov
Expand Down Expand Up @@ -108,7 +108,7 @@ resource "aws_opensearch_domain" "domain_1" {
}
resource "aws_opensearch_domain" "domain_2" {
domain_name = "%s-2"
domain_name = "%s-2"
cluster_config {
instance_type = "t3.small.search" # supported in both aws and aws-us-gov
Expand Down

0 comments on commit 8a50eb9

Please sign in to comment.