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 in the dataset.
Remove allAuthenticatedUsers
and allUsers
values from access.special_group
attribute.
resource "google_bigquery_dataset" "allowed_3" {
dataset_id = "example_dataset3"
friendly_name = "test"
description = "This is a test description"
location = "EU"
default_table_expiration_ms = 3600000
access {
role = "OWNER"
special_group = "projectOwners"
}
}