Skip to content

Commit ae52fee

Browse files
committed
updates
1 parent 07a83b5 commit ae52fee

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

cloudstack/data_source_cloudstack_physical_network_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,5 @@ data "cloudstack_physical_network" "foo" {
6464
value = "terraform-physical-network"
6565
}
6666
depends_on = [cloudstack_physical_network.foo]
67+
}
6768
`

cloudstack/resource_cloudstack_vlan_ip_range_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ resource "cloudstack_zone" "test" {
9595
}
9696
resource "cloudstack_physical_network" "test" {
9797
broadcast_domain_range = "ZONE"
98-
isolation_methods = "VLAN"
98+
isolation_methods = ["VLAN"]
9999
name = "test01"
100100
network_speed = "1G"
101101
tags = "vlan"

cloudstack/resource_cloudstack_zone_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func TestAccCloudStackZone_basic(t *testing.T) {
3636
{
3737
Config: testAccCloudStackZone_update,
3838
Check: resource.ComposeTestCheckFunc(
39-
resource.TestCheckResourceAttr("cloudstack_zone.test", "name", "acctestupdated"),
39+
resource.TestCheckResourceAttr("cloudstack_zone.test", "name", "acctestZone1Updated"),
4040
),
4141
},
4242
},
@@ -45,7 +45,7 @@ func TestAccCloudStackZone_basic(t *testing.T) {
4545

4646
const testAccCloudStackZone_basic = `
4747
resource "cloudstack_zone" "test" {
48-
name = "acctest"
48+
name = "acctestZone1"
4949
dns1 = "8.8.8.8"
5050
dns2 = "8.8.8.8"
5151
internal_dns1 = "8.8.4.4"
@@ -57,7 +57,7 @@ resource "cloudstack_zone" "test" {
5757

5858
const testAccCloudStackZone_update = `
5959
resource "cloudstack_zone" "test" {
60-
name = "acctestupdated"
60+
name = "acctestZone1Updated"
6161
dns1 = "8.8.4.4"
6262
dns2 = "8.8.4.4"
6363
internal_dns1 = "8.8.8.8"

0 commit comments

Comments
 (0)