CCSS (Common Configuration Scoring System) is a set of measures used to determine the severity of the rule.
Each rule is associated with a high-level category. For example IAM, Container, Monitoring, Logging, Network, etc.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsPotentially anyone can access data stored in the bucket.
Remove allUsers
and allAuthenticatedUsers
values from member
or members
attribute.
resource "google_storage_bucket_iam_member" "allowed" {
bucket = "test"
role = "roles/storage.admin"
member = "user:jane@example.com"
}
resource "google_storage_bucket_iam_binding" "allowed" {
bucket = "test"
role = "roles/storage.admin"
members = [
"user:jane@example.com",
]
}