github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/azure/network/AVD-AZU-0051/Terraform.md (about)

     1  
     2  Set a more restrictive cidr range
     3  
     4  ```hcl
     5   resource "azurerm_network_security_rule" "good_example" {
     6   	direction = "Outbound"
     7   	destination_address_prefix = "10.0.0.0/16"
     8   	access = "Allow"
     9   }
    10  ```
    11  
    12  #### Remediation Links
    13   - https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/network_security_rule
    14