Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
psychomantys committed Apr 23, 2024
1 parent dbc67e5 commit 907fc50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acl.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resource "aws_s3_bucket_acl" "grant_owner_to_iam" {
access_control_policy {
grant {
grantee {
id = aws_iam_user.bucket_user[0].unique_id
id = aws_iam_user.bucket_user[0].arn
type = "CanonicalUser"
}
permission = "WRITE_ACP"
Expand All @@ -32,7 +32,7 @@ resource "aws_s3_bucket_acl" "grant_owner_to_iam" {
}

owner {
id = aws_iam_user.bucket_user[0].unique_id
id = aws_iam_user.bucket_user[0].arn
}
}
}

0 comments on commit 907fc50

Please sign in to comment.