Skip to content

Commit

Permalink
Merge pull request #23078 from hashicorp/td-acctest-s3-bucket-acl
Browse files Browse the repository at this point in the history
tests/acctest: update to `aws_s3_bucket_acl`
  • Loading branch information
anGie44 authored Feb 9, 2022
2 parents 6487b32 + 2d645f9 commit 5788c64
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion internal/acctest/acctest_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -906,9 +906,13 @@ provider "aws" {
resource "aws_s3_bucket" "test" {
bucket = %[2]q
acl = "private"
force_destroy = true
}
resource "aws_s3_bucket_acl" "test" {
bucket = aws_s3_bucket.test.id
acl = "private"
}
`, endpoint, rName))
}

Expand Down

0 comments on commit 5788c64

Please sign in to comment.