Open jkroepke opened 3 years ago
Hi @jkroepke - iirc omitting that property entirely should achieve your desired result. By attempting to specify a value, even an empty list, this effectively activates that part of the configuration.
@jackofallops
iirc omitting that property entirely
In this case, the default value (For all IP addresses except IANA RFC 1918 ranges; see the screen) is used inside azure
As per https://github.com/hashicorp/terraform-provider-azurerm/pull/10627 it should be implemented by now but omitting private_ip_ranges = ["0.0.0.0/0"]
or private_ip_ranges = []
doesn't seem to have any effect on changing the setting to Never. The setting remains at the default setting For all IP addresses except IANA RFC 1918 ranges.
Community Note
Terraform (and AzureRM Provider) Version
Terraform: 1.0.5 AzureRM: 2.77.0
Affected Resource(s)
azurerm_firewall_policy
Terraform Configuration Files
Debug Output
Panic Output
Expected Behaviour
The SNAT functionally is set to None or Empty inside Azure
Actual Behaviour
Steps to Reproduce
terraform apply
Important Factoids
References
0000