Skip to content

Commit 9190fa6

Browse files
poddmmp940m
authored andcommitted
updating conflicting start_ip in ACC
1 parent f24347b commit 9190fa6

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
lines changed

cloudstack/resource_cloudstack_cluster_test.go

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,6 @@ func TestAccCloudStackCluster_basic(t *testing.T) {
3333
{
3434
Config: testAccCloudStackCluster_basic,
3535
},
36-
// {
37-
// Config: testAccCloudStackCluster_update,
38-
// Check: resource.ComposeTestCheckFunc(
39-
// resource.TestCheckResourceAttr("cloudstack_cluster.test", "name", "acctestupdated"),
40-
// ),
41-
// },
4236
},
4337
})
4438
}
@@ -55,10 +49,10 @@ resource "cloudstack_zone" "test" {
5549
}
5650
resource "cloudstack_pod" "test" {
5751
allocation_state = "Disabled"
58-
gateway = "172.29.0.1"
52+
gateway = "172.30.0.1"
5953
name = "accpod"
6054
netmask = "255.255.240.0"
61-
start_ip = "172.29.0.2"
55+
start_ip = "172.30.0.2"
6256
zone_id = cloudstack_zone.test.id
6357
}
6458
resource "cloudstack_cluster" "test" {
@@ -69,7 +63,3 @@ resource "cloudstack_cluster" "test" {
6963
zone_id = cloudstack_zone.test.id
7064
}
7165
`
72-
73-
const testAccCloudStackCluster_update = `
74-
75-
`

cloudstack/resource_cloudstack_storage_pool_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ resource "cloudstack_zone" "test" {
5555
}
5656
resource "cloudstack_pod" "test" {
5757
allocation_state = "Disabled"
58-
gateway = "172.30.0.1"
58+
gateway = "172.31.0.1"
5959
name = "accpod"
6060
netmask = "255.255.240.0"
61-
start_ip = "172.30.0.2"
61+
start_ip = "172.31.0.2"
6262
zone_id = cloudstack_zone.test.id
6363
}
6464
resource "cloudstack_cluster" "test" {
@@ -93,10 +93,10 @@ resource "cloudstack_zone" "test" {
9393
}
9494
resource "cloudstack_pod" "test" {
9595
allocation_state = "Disabled"
96-
gateway = "172.30.0.1"
96+
gateway = "172.31.0.1"
9797
name = "accpod"
9898
netmask = "255.255.240.0"
99-
start_ip = "172.30.0.2"
99+
start_ip = "172.31.0.2"
100100
zone_id = cloudstack_zone.test.id
101101
}
102102
resource "cloudstack_cluster" "test" {

0 commit comments

Comments
 (0)