Skip to content

Commit

Permalink
fix: Revert change for grant in aws_s3_bucket_acl resource (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
m4t22 authored May 25, 2022
1 parent da9901e commit ec88013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ resource "aws_s3_bucket_acl" "this" {
acl = var.acl == "null" ? null : var.acl

dynamic "access_control_policy" {
for_each = length(local.grants) > 0 ? local.grants : []
for_each = length(local.grants) > 0 ? [true] : []

content {
dynamic "grant" {
Expand Down

0 comments on commit ec88013

Please sign in to comment.