Skip to content

Commit 07a83b5

Browse files
committed
updates
1 parent 522a08a commit 07a83b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cloudstack/resource_cloudstack_network_service_provider_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ resource "cloudstack_zone" "foo" {
202202
203203
resource "cloudstack_physical_network" "foo" {
204204
name = "terraform-physical-network"
205-
zone = cloudstack_zone.foo.name
205+
zone_id = cloudstack_zone.foo.id
206206
broadcast_domain_range = "ZONE"
207207
isolation_methods = ["VLAN"]
208208
}
@@ -224,7 +224,7 @@ resource "cloudstack_zone" "foo" {
224224
225225
resource "cloudstack_physical_network" "foo" {
226226
name = "terraform-physical-network"
227-
zone = cloudstack_zone.foo.name
227+
zone_id = cloudstack_zone.foo.id
228228
broadcast_domain_range = "ZONE"
229229
isolation_methods = ["VLAN"]
230230
}

cloudstack/resource_cloudstack_vlan_ip_range_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ resource "cloudstack_zone" "test" {
6666
}
6767
resource "cloudstack_physical_network" "test" {
6868
broadcast_domain_range = "ZONE"
69-
isolation_methods = "VLAN"
69+
isolation_methods = ["VLAN"]
7070
name = "test01"
7171
network_speed = "1G"
7272
tags = "vlan"

0 commit comments

Comments
 (0)