@@ -321,7 +321,7 @@ resource "cloudstack_instance" "foobar" {
321321 name = "terraform-test"
322322 display_name = "terraform-test"
323323 service_offering= "Small Instance"
324- network_id = "${ cloudstack_network.foo.id}"
324+ network_id = cloudstack_network.foo.id
325325 template = "CentOS 5.6 (64-bit) no GUI (Simulator)"
326326 zone = "Sandbox-simulator"
327327 user_data = "foobar\nfoo\nbar"
@@ -343,7 +343,7 @@ resource "cloudstack_instance" "foobar" {
343343 name = "terraform-test"
344344 display_name = "terraform-test"
345345 service_offering= "Small Instance"
346- network_id = "${ cloudstack_network.foo.id}"
346+ network_id = cloudstack_network.foo.id
347347 template = "CentOS 5.6 (64-bit) no GUI (Simulator)"
348348 zone = "Sandbox-simulator"
349349 start_vm = false
@@ -362,7 +362,7 @@ resource "cloudstack_instance" "foobar" {
362362 name = "terraform-updated"
363363 display_name = "terraform-updated"
364364 service_offering= "Medium Instance"
365- network_id = "${ cloudstack_network.foo.id}"
365+ network_id = cloudstack_network.foo.id
366366 template = "CentOS 5.6 (64-bit) no GUI (Simulator)"
367367 zone = "Sandbox-simulator"
368368 user_data = "foobar\nfoo\nbar"
@@ -381,7 +381,7 @@ resource "cloudstack_instance" "foobar" {
381381 name = "terraform-test"
382382 display_name = "terraform-test"
383383 service_offering= "Small Instance"
384- network_id = "${ cloudstack_network.foo.id}"
384+ network_id = cloudstack_network.foo.id
385385 ip_address = "10.1.1.123"
386386 template = "CentOS 5.6 (64-bit) no GUI (Simulator)"
387387 zone = "Sandbox-simulator"
@@ -404,10 +404,10 @@ resource "cloudstack_instance" "foobar" {
404404 name = "terraform-test"
405405 display_name = "terraform-test"
406406 service_offering= "Small Instance"
407- network_id = "${ cloudstack_network.foo.id}"
407+ network_id = cloudstack_network.foo.id
408408 template = "CentOS 5.6 (64-bit) no GUI (Simulator)"
409409 zone = "Sandbox-simulator"
410- keypair = "${ cloudstack_ssh_keypair.foo.name}"
410+ keypair = cloudstack_ssh_keypair.foo.name
411411 expunge = true
412412}`
413413
@@ -424,9 +424,9 @@ resource "cloudstack_instance" "foobar" {
424424 name = "terraform-test"
425425 display_name = "terraform-test"
426426 service_offering= "Small Instance"
427- network_id = "${ cloudstack_network.foo.id}"
427+ network_id = cloudstack_network.foo.id
428428 template = "CentOS 5.6 (64-bit) no GUI (Simulator)"
429429 project = "terraform"
430- zone = "${ cloudstack_network.foo.zone}"
430+ zone = cloudstack_network.foo.zone
431431 expunge = true
432432}`
0 commit comments