github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/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