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 applicationsService accounts should not have admin privileges as they give full access to an assigned application or a VM, and a service account can perform critical actions like delete, update, etc. without user intervention.
Remove any administrative roles from service accounts. Administrative roles include roles that have any of the following suffixes admin
, roles/editor
and roles/owner
.
resource "google_project_iam_member" "valid" {
role = "roles/viewer"
member = google_service_account.valid.email
}
resource "google_service_account" "valid" {
account_id = "service-account-id"
display_name = "Service Account"
}