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 applicationsInstance can be used for packet interception and sending spoofed requests.
Set can_ip_forward
attribute to false
.
resource "google_compute_instance" "allowed" {
name = "test394a2"
machine_type = "e2-medium"
zone = "us-central1-a"
tags = ["foo", "bar"]
boot_disk {
initialize_params {
image = "debian-cloud/debian-11"
}
}
can_ip_forward = false
network_interface {
network = "default"
access_config {
// Ephemeral IP
}
}
}