Skip to content

Commit

Permalink
hashicorp#19856 validate-terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Aug 3, 2022
1 parent eb2bfbc commit bd99d32
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,10 @@ resource "aws_s3_bucket_policy" "test" {
"Service" : "macie.${data.aws_partition.current.dns_suffix}"
},
"Action" : "s3:GetBucketLocation",
"Resource" : "${aws_s3_bucket.test.arn}",
"Resource" : aws_s3_bucket.test.arn,
"Condition" : {
"StringEquals" : {
"aws:SourceAccount" : "${data.aws_caller_identity.current.account_id}"
"aws:SourceAccount" : data.aws_caller_identity.current.account_id
},
"ArnLike" : {
"aws:SourceArn" : [
Expand Down

0 comments on commit bd99d32

Please sign in to comment.