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 system is not protected against accidental or intentionally malicious deletion.
Set the deletion_protection
attribute to true
.
resource "google_compute_instance" "allowed" {
name = "test"
machine_type = "e2-medium"
zone = "us-central1-a"
deletion_protection = "true"
boot_disk {
initialize_params {
image = "debian-10-buster-v20220920"
}
}
network_interface {
network = "default"
}
}