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 applicationsThe service has specified the use of an external IP address. External IPs can be abused to perform man in the middle attacks on the service.
Remove spec.externalIPs
or spec.loadBalancerIP
attributes.
Remove spec.external_ips
or spec.load_balancer_ip
attributes.
resource "kubernetes_service" "allowed" {
metadata {
name = "terraform-example"
}
spec {
selector = {
app = var.k8s_43_var
}
session_affinity = "ClientIP"
port {
port = 8080
target_port = 80
}
type = "LoadBalancer"
}
}