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 template allows sending and receiving of packets from non-matching source or destination IPs, meaning it is vulnerable to attack.
Set can_ip_forward
to false
. Instance template allows sending and receiving of packets from non-matching source or destination IPs, meaning it is vulnerable to attack.
resource "google_compute_instance_template" "allowed1" {
name = "appserver-template-396a1"
description = "This template is used to create app server instances."
machine_type = "e2-medium"
can_ip_forward = false
disk {
source_image = "debian-cloud/debian-11"
auto_delete = true
boot = true
}
network_interface {
network = "default"
}
}