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 applicationsContainer-Optimized OS is a secure and speedy operating system image for Compute Engine VMs. Optimize your GKE cluster nodes' security by running them on Container-Optimized OS images.
Set node_config.image_type
attribute to a COS
based image, or remove attribute.
resource "google_service_account" "default" {
account_id = "service-account-id"
display_name = "Service Account"
}
resource "google_container_cluster" "allowed" {
name = "gke-cluster-411-b1"
location = "us-east1-b"
initial_node_count = 1
}
resource "google_container_node_pool" "primary_preemptible_nodes_b" {
name = "node-pool-411b1"
cluster = google_container_cluster.allowed.id
node_count = 1
node_config {
preemptible = true
machine_type = "e2-medium"
image_type = "COS_CONTAINERD"
service_account = google_service_account.default.email
oauth_scopes = [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}