Skip to content

Commit 3544af4

Browse files
committed
Fix terrafmt errors.
1 parent 41970b4 commit 3544af4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

internal/service/wafv2/regex_pattern_set_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -364,15 +364,15 @@ resource "aws_wafv2_regex_pattern_set" "test" {
364364
regex_string = "two"
365365
}
366366
}
367-
`
367+
`
368368
}
369369

370370
func testAccRegexPatternSetConfig_namePrefix(namePrefix string) string {
371371
return fmt.Sprintf(`
372372
resource "aws_wafv2_regex_pattern_set" "test" {
373-
name_prefix = %[1]q
374-
description = %[1]q
375-
scope = "REGIONAL"
373+
name_prefix = %[1]q
374+
description = %[1]q
375+
scope = "REGIONAL"
376376
377377
regular_expression {
378378
regex_string = "one"
@@ -382,7 +382,7 @@ resource "aws_wafv2_regex_pattern_set" "test" {
382382
regex_string = "two"
383383
}
384384
}
385-
`, namePrefix)
385+
`, namePrefix)
386386
}
387387

388388
func testAccRegexPatternSetConfig_update(name string) string {

internal/service/wafv2/web_acl_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3436,15 +3436,15 @@ resource "aws_wafv2_web_acl" "test" {
34363436
sampled_requests_enabled = false
34373437
}
34383438
}
3439-
`
3439+
`
34403440
}
34413441

34423442
func testAccWebACLConfig_namePrefix(namePrefix string) string {
34433443
return fmt.Sprintf(`
34443444
resource "aws_wafv2_web_acl" "test" {
3445-
name_prefix = %[1]q
3446-
description = %[1]q
3447-
scope = "REGIONAL"
3445+
name_prefix = %[1]q
3446+
description = %[1]q
3447+
scope = "REGIONAL"
34483448
34493449
default_action {
34503450
allow {}
@@ -3456,7 +3456,7 @@ resource "aws_wafv2_web_acl" "test" {
34563456
sampled_requests_enabled = false
34573457
}
34583458
}
3459-
`, namePrefix)
3459+
`, namePrefix)
34603460
}
34613461

34623462
func testAccWebACLConfig_basicRule(rName string) string {

0 commit comments

Comments
 (0)