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 applicationsGKE node pool automatic upgrades are disabled. This Increases the security management overhead.
Set management.auto_upgrade
attribute to true
.
resource "google_container_node_pool" "allowed1" {
name = "node-pool427-1"
cluster = google_container_cluster.cluster1.id
node_count = 1
location = "us-east1-d"
management {
auto_upgrade = true
}
}