Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,14 @@ terraform {
}

resource "aws_s3_bucket" "positive1" {
bucket = "my-tf-test-bucket"
bucket = "my-test-bucket"
acl = "private"

tags = {
Name = "My bucket"
Environment = "Dev"
}

versioning {
enabled = false
}

tags = {
Name = "My bucket"
Comment on lines +22 to +23

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔵 Infrastructure as Code Configuration Issue

aws_s3_bucket[{{positive1}}].tags does not have additional tags defined other than 'Name' (...read more)

AWS services resource tags are an essential part of managing components. As a best practice, the field 'tags' should have additional tags defined other than 'Name'

View in Datadog  Leave us feedback  Documentation

}
}