CodeBleu commented on issue #129: URL: https://github.com/apache/cloudstack-terraform-provider/issues/129#issuecomment-2545996468
> > @AlexanderKgr what is the Cloudstack version and Cloudstack terraform provider version you are using > > I am not facing the issue with the latest terraform release of 0.5 release and cloudstack version 4.19 > > ``` > > > > terraform { > > required_providers { > > cloudstack = { > > source = "cloudstack/cloudstack" > > version = "0.5.0" > > } > > } > > } > > > > > > resource "cloudstack_vpc" "default" { > > name = "test-vpc" > > cidr = "10.0.0.0/16" > > vpc_offering = "Default VPC Offering" > > zone = "ref-trl-7435-k-Mol8-kiran-chavala" > > network_domain = "kirantest" > > project = "4f756ff5-25b8-4e0a-9b13-914bae550133" > > } > > > > output "vpc_id" { > > value= cloudstack_vpc.default.id > > > > } > > > > > > resource "cloudstack_network_acl" "default" { > > name = "test-acl" > > vpc_id = cloudstack_vpc.default.id > > } > > > > output "acl_id" { > > value= cloudstack_network_acl.default.id > > } > > > > resource "cloudstack_network_acl_rule" "default" { > > acl_id = cloudstack_network_acl.default.id > > > > rule { > > action = "allow" > > cidr_list = ["10.0.0.0/8"] > > protocol = "tcp" > > ports = ["80", "1000-2000"] > > traffic_type = "ingress" > > } > > } > > ``` > > i am using cloudstack 4.19.1.1 and terraform 0.5. in next days i will try to deploy again and report again @AlexanderKgr Were you able to deploy again and verify if this is still an issue for you or not? -- 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: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org