Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
psychomantys committed Dec 27, 2024
1 parent d04a45d commit 3d0161e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ resource "aws_iam_policy" "bucket_rw" {
policy = data.aws_iam_policy_document.allow_read_write[0].json

description = "Provides read-write access to the '${var.bucket_name}' S3 bucket"

tags = local.common_tags

lifecycle {
ignore_changes = [
tags["CreateTimestamp"]
]
}
}

// Extra custom policy
Expand Down

0 comments on commit 3d0161e

Please sign in to comment.