Skip to content

Commit

Permalink
Fix terrafmt error.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Jul 25, 2024
1 parent 0ab5629 commit 336d2c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/service/rds/snapshot_copy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -331,9 +331,9 @@ resource "aws_db_snapshot_copy" "test" {
func testAccSnapshotCopyConfig_share(rName string) string {
return acctest.ConfigCompose(testAccSnapshotCopyConfig_base(rName), fmt.Sprintf(`
resource "aws_db_snapshot_copy" "test" {
source_db_snapshot_identifier = aws_db_snapshot.test.db_snapshot_arn
target_db_snapshot_identifier = "%[1]s-target"
shared_accounts = ["all"]
source_db_snapshot_identifier = aws_db_snapshot.test.db_snapshot_arn
target_db_snapshot_identifier = "%[1]s-target"
shared_accounts = ["all"]
}
`, rName))
}
Expand Down

0 comments on commit 336d2c0

Please sign in to comment.