@@ -112,8 +112,6 @@ func TestAccCloudStackLoadBalancerRule_forceNew(t *testing.T) {
112112 "cloudstack_loadbalancer_rule.foo" , "public_port" , "80" ),
113113 resource .TestCheckResourceAttr (
114114 "cloudstack_loadbalancer_rule.foo" , "private_port" , "80" ),
115- resource .TestCheckResourceAttr (
116- "cloudstack_loadbalancer_rule.foo" , "cidrlist.0" , "10.0.0.0/8" ),
117115 ),
118116 },
119117
@@ -181,8 +179,6 @@ func TestAccCloudStackLoadBalancerRule_vpcUpdate(t *testing.T) {
181179 "cloudstack_loadbalancer_rule.foo" , "public_port" , "80" ),
182180 resource .TestCheckResourceAttr (
183181 "cloudstack_loadbalancer_rule.foo" , "private_port" , "80" ),
184- resource .TestCheckResourceAttr (
185- "cloudstack_loadbalancer_rule.foo" , "cidrlist.0" , "10.0.0.0/8" ),
186182 ),
187183 },
188184
@@ -200,8 +196,6 @@ func TestAccCloudStackLoadBalancerRule_vpcUpdate(t *testing.T) {
200196 "cloudstack_loadbalancer_rule.foo" , "private_port" , "443" ),
201197 resource .TestCheckResourceAttr (
202198 "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" ),
205199 ),
206200 },
207201 },
@@ -300,7 +294,6 @@ resource "cloudstack_loadbalancer_rule" "foo" {
300294 public_port = 80
301295 private_port = 80
302296 member_ids = [cloudstack_instance.foobar1.id]
303- cidrlist = ["10.0.0.0/8"]
304297}`
305298
306299const testAccCloudStackLoadBalancerRule_update = `
@@ -334,7 +327,6 @@ resource "cloudstack_loadbalancer_rule" "foo" {
334327 public_port = 80
335328 private_port = 80
336329 member_ids = [cloudstack_instance.foobar1.id]
337- cidrlist = ["10.0.0.0/8"]
338330}`
339331
340332const testAccCloudStackLoadBalancerRule_forcenew = `
@@ -412,7 +404,6 @@ resource "cloudstack_loadbalancer_rule" "foo" {
412404 public_port = 80
413405 private_port = 80
414406 member_ids = [cloudstack_instance.foobar1.id]
415- cidrlist = ["10.0.0.0/8"]
416407}`
417408
418409const testAccCloudStackLoadBalancerRule_vpc_update = `
0 commit comments