I have a code in terraform that add a network security rule deny all in azure, in the variable destination_port_ranges the documentations said:
https://registry.terraform.io/providers/hashicorp/azurestack/latest/docs/resources/network_security_group
put "*" when you are going to select all ports, but when I run the plan I don't know why still got the error
on ../../../common-modules/NetworkSecurityRuleDenyInboundTcpVNet/main.tf line 10, in resource "azurerm_network_security_rule" "rule":
10: destination_port_ranges = "*"
Inappropriate value for attribute "destination_port_ranges": set of string
required.
