vishesh92 commented on PR #203:
URL:
https://github.com/apache/cloudstack-terraform-provider/pull/203#issuecomment-3226983122
The below configuration is failing. As of now, it looks like rule_number
doesn't work when ports are specified. Because before the implementation, each
port was getting assigned different rule number. This will require updates in
terraform docs accordingly.
```hcl
resource "cloudstack_network_acl_rule" "foo" {
acl_id = cloudstack_network_acl.foo.id
rule {
rule_number = 20
action = "allow"
cidr_list = ["172.18.100.0/20"]
ports = ["80", "443"]
protocol = "tcp"
traffic_type = "ingress"
description = "Allow tcp traffic"
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]