fabiomatavelli commented on code in PR #71: URL: https://github.com/apache/cloudstack-terraform-provider/pull/71#discussion_r1640110141
########## cloudstack/resource_cloudstack_instance_test.go: ########## @@ -404,16 +409,17 @@ resource "cloudstack_instance" "foobar" { name = "terraform-test" display_name = "terraform-test" service_offering= "Small Instance" - network_id = "${cloudstack_network.foo.id}" + network_id = cloudstack_network.foo.id template = "CentOS 5.6 (64-bit) no GUI (Simulator)" zone = "Sandbox-simulator" - keypair = "${cloudstack_ssh_keypair.foo.name}" + keypair = cloudstack_ssh_keypair.foo.name Review Comment: fixed ########## cloudstack/resource_cloudstack_instance_test.go: ########## @@ -404,16 +409,17 @@ resource "cloudstack_instance" "foobar" { name = "terraform-test" display_name = "terraform-test" service_offering= "Small Instance" - network_id = "${cloudstack_network.foo.id}" + network_id = cloudstack_network.foo.id template = "CentOS 5.6 (64-bit) no GUI (Simulator)" zone = "Sandbox-simulator" - keypair = "${cloudstack_ssh_keypair.foo.name}" + keypair = cloudstack_ssh_keypair.foo.name expunge = true }` const testAccCloudStackInstance_project = ` resource "cloudstack_network" "foo" { name = "terraform-network" + display_text = "terraform-network" Review Comment: fixed -- 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