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 applicationsPotentially anyone can access the GKE administrative endpoint.
Set master_authorized_networks_config.cidr_blocks
to specific ranges only .e.g 192.168.0.0/24
.
resource "google_container_cluster" "allowed" {
name = "my-gke-cluster"
location = "us-central1"
}
resource "google_container_cluster" "allowed_2" {
name = "my-gke-cluster"
location = "us-central1"
master_authorized_networks_config {
}
}
resource "google_container_cluster" "allowed_3" {
name = "my-gke-cluster"
location = "us-central1"
master_authorized_networks_config {
cidr_blocks {
cidr_block = "192.168.0.0/24"
}
cidr_blocks {
cidr_block = "192.0.0.0/16"
}
}
}