github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/aws/vpc/AVD-AWS-0104/Terraform.md (about)

     1  
     2  Set a more restrictive cidr range
     3  
     4  ```hcl
     5  resource "aws_security_group" "good_example" {
     6    egress {
     7      cidr_blocks = ["1.2.3.4/32"]
     8    }
     9  }
    10  ```
    11  
    12  #### Remediation Links
    13   - https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group
    14