Skip to content

Commit

Permalink
Remove extra tag key
Browse files Browse the repository at this point in the history
  • Loading branch information
gcp87zoi committed Sep 18, 2024
1 parent b30b3a5 commit 0dfa245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3_bucket.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
resource "aws_s3_bucket" "s3_bucket" {
bucket = var.s3_bucket_name

tags = merge({ Name = var.s3_bucket_name, role = "storage" }, var.tags)
tags = merge({ Name = var.s3_bucket_name }, var.tags)
}

resource "aws_s3_bucket_acl" "name" {
Expand Down

0 comments on commit 0dfa245

Please sign in to comment.