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 applicationsAssigning IAM users with project-level 'Service Account User' or 'Service Account Token Creator' roles means that they can potentially access resources across an entire project. IAM users should be assigned to a specific service account with more scoped access.
Remove roles/iam.serviceAccountUser
and roles/iam.serviceAccountTokenCreator
from project level bindings.
resource "google_project_iam_member" "allowed" {
project = "your-project-id"
role = "roles/editor"
member = "user:jane@example.com"
}