sbrueseke opened a new issue, #58: URL: https://github.com/apache/cloudstack-terraform-provider/issues/58
when an instance is using a custom offering and you change cpu and/or memory in details parameter terraform apply shows the change but the instance itself not. Even if instance is shutdown to scale it, it does not work. Config: resource "cloudstack_instance" "VM1" { name = "TERRAFORMVM1" service_offering = "custom" template = id network_id = id zone = "zone1" expunge = true root_disk_size = 10 details = {"cpuNumber" = "1", "memory" = "1024"} } Do a terraform apply and the instance will be created with cpu and memory from config. Now edit one or both of them and do a terraform apply again. terraform is showing the changes and says is has been successfully finished, but the instance on CS still has the old values. -- 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.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org