Damans227 commented on issue #32:
URL: 
https://github.com/apache/cloudstack-terraform-provider/issues/32#issuecomment-1112768468

   Hi @kohrar 
   > 
   > Would the network resource I specify make a difference? This is what I do 
and that also includes the zone and VPC.
   > 
   
   Umm, can you try adding `zone1` in the `cloudstack_ipaddress` resource and 
then try again? Basically, like this:
   
   ```
   resource "cloudstack_ipaddress" "public_ip" { 
       count = "1" 
    
       vpc_id = "${cloudstack_vpc.default.id}" 
       network_id = "${cloudstack_network.leosnet.id}" 
       zone = "zone1" 
   } 
   
   ``` 
   
   > 
   > Are you also using the latest version of cloudstack-go when compiling the 
terraform provider? 
   
   So, I didn't change the default version of  `cloudstack-go` imported in the 
`resource_cloudstack_ipaddress.go` file. If I follow the location of the 
`cloudstack-go` import, it takes me to 
[v2.11.0.](https://pkg.go.dev/github.com/apache/cloudstack-go/v2@v2.11.0/cloudstack).
 
   
   


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

Reply via email to