kiranchavala commented on PR #245:
URL: 
https://github.com/apache/cloudstack-terraform-provider/pull/245#issuecomment-3409730192

   @Pearl1594 
   
   Strangely not hitting when i use your config 
   
   ```
   resource "cloudstack_network_acl_rule" "default" {
     acl_id = cloudstack_network_acl.default.id
   
     rule {
       action       = "allow"
       cidr_list    = ["10.0.0.0/24"]
       protocol     = "tcp"
       ports        = ["80-81", "8080", "443", "2222-2224"]
       traffic_type = "ingress"
     }
   }
   
   ```
   Afer terraform init upgrade 
   
   
   ```
   
   resource "cloudstack_network_acl_rule" "default" {
     acl_id = cloudstack_network_acl.default.id
   
     rule {
       action       = "allow"
       cidr_list    = ["10.0.0.0/24"]
       protocol     = "tcp"
       port         = "80-81"
       traffic_type = "ingress"
     }
    
     rule {
       action       = "allow"
       cidr_list    = ["10.0.0.0/24"]
       protocol     = "tcp"
       port         = "8080"
       traffic_type = "ingress"
     }
   
     rule {
       action       = "allow"
       cidr_list    = ["10.0.0.0/24"]
       protocol     = "tcp"
       port         = "443"
       traffic_type = "ingress"
       rule_number  = 5
     }
   
     rule {
       action       = "allow"
       cidr_list    = ["10.0.0.0/24"]
       protocol     = "tcp"
       port         = "2222-2224"
       traffic_type = "ingress"
     }
   }
   
   ```
   


-- 
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]

Reply via email to