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 applicationsEnabling 'DATA_READ' and 'DATA_WRITE' data access log types as part of the default IAM audit log config ensure important security events, such as unauthorized data access or modification, are tracked.
IAM default audit log config should include 'DATA_READ' and 'DATA_WRITE' log types.
resource "google_project_iam_audit_config" "allowed1" {
project = "test-project"
service = "allServices"
audit_log_config {
log_type = "DATA_READ"
}
audit_log_config {
log_type = "DATA_WRITE"
}
}