github.com/aquasecurity/trivy-iac@v0.8.1-0.20240127024015-3d8e412cf0ab/avd_docs/google/compute/AVD-GCP-0035/Terraform.md (about)

     1  
     2  Set a more restrictive cidr range
     3  
     4  ```hcl
     5   resource "google_compute_firewall" "good_example" {
     6    direction = "EGRESS"
     7    allow {
     8      protocol = "icmp"
     9    }
    10    destination_ranges = ["1.2.3.4/32"]
    11  }
    12  ```
    13  
    14  #### Remediation Links
    15   - https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_firewall
    16