github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/aws/vpc/AVD-AWS-0107/Terraform.md (about) 1 2 Set a more restrictive cidr range 3 4 ```hcl 5 resource "aws_security_group_rule" "good_example" { 6 type = "ingress" 7 cidr_blocks = ["10.0.0.0/16"] 8 } 9 ``` 10 11 #### Remediation Links 12 - https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/security_group_rule#cidr_blocks 13