@@ -112,8 +112,6 @@ func TestAccCloudStackLoadBalancerRule_forceNew(t *testing.T) {
112
112
"cloudstack_loadbalancer_rule.foo" , "public_port" , "80" ),
113
113
resource .TestCheckResourceAttr (
114
114
"cloudstack_loadbalancer_rule.foo" , "private_port" , "80" ),
115
- resource .TestCheckResourceAttr (
116
- "cloudstack_loadbalancer_rule.foo" , "cidrlist.0" , "10.0.0.0/8" ),
117
115
),
118
116
},
119
117
@@ -181,8 +179,6 @@ func TestAccCloudStackLoadBalancerRule_vpcUpdate(t *testing.T) {
181
179
"cloudstack_loadbalancer_rule.foo" , "public_port" , "80" ),
182
180
resource .TestCheckResourceAttr (
183
181
"cloudstack_loadbalancer_rule.foo" , "private_port" , "80" ),
184
- resource .TestCheckResourceAttr (
185
- "cloudstack_loadbalancer_rule.foo" , "cidrlist.0" , "10.0.0.0/8" ),
186
182
),
187
183
},
188
184
@@ -200,8 +196,6 @@ func TestAccCloudStackLoadBalancerRule_vpcUpdate(t *testing.T) {
200
196
"cloudstack_loadbalancer_rule.foo" , "private_port" , "443" ),
201
197
resource .TestCheckResourceAttr (
202
198
"cloudstack_loadbalancer_rule.foo" , "cidrlist.0" , "20.0.0.0/8" ),
203
- resource .TestCheckResourceAttr (
204
- "cloudstack_loadbalancer_rule.foo" , "cidrlist.1" , "30.0.0.0/8" ),
205
199
),
206
200
},
207
201
},
@@ -300,7 +294,6 @@ resource "cloudstack_loadbalancer_rule" "foo" {
300
294
public_port = 80
301
295
private_port = 80
302
296
member_ids = [cloudstack_instance.foobar1.id]
303
- cidrlist = ["10.0.0.0/8"]
304
297
}`
305
298
306
299
const testAccCloudStackLoadBalancerRule_update = `
@@ -334,7 +327,6 @@ resource "cloudstack_loadbalancer_rule" "foo" {
334
327
public_port = 80
335
328
private_port = 80
336
329
member_ids = [cloudstack_instance.foobar1.id]
337
- cidrlist = ["10.0.0.0/8"]
338
330
}`
339
331
340
332
const testAccCloudStackLoadBalancerRule_forcenew = `
@@ -412,7 +404,6 @@ resource "cloudstack_loadbalancer_rule" "foo" {
412
404
public_port = 80
413
405
private_port = 80
414
406
member_ids = [cloudstack_instance.foobar1.id]
415
- cidrlist = ["10.0.0.0/8"]
416
407
}`
417
408
418
409
const testAccCloudStackLoadBalancerRule_vpc_update = `
0 commit comments