enabled cross zone load balancing
This commit is contained in:
parent
f1cb297c59
commit
1d3e30b353
|
@ -31,6 +31,11 @@ func resourceAwsElb() *schema.Resource {
|
||||||
Computed: true,
|
Computed: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"cross_zone_load_balancing": &schema.Schema{
|
||||||
|
Type: schema.TypeBool,
|
||||||
|
Optional: true,
|
||||||
|
},
|
||||||
|
|
||||||
"availability_zones": &schema.Schema{
|
"availability_zones": &schema.Schema{
|
||||||
Type: schema.TypeList,
|
Type: schema.TypeList,
|
||||||
Elem: &schema.Schema{Type: schema.TypeString},
|
Elem: &schema.Schema{Type: schema.TypeString},
|
||||||
|
@ -219,6 +224,7 @@ func resourceAwsElbCreate(d *schema.ResourceData, meta interface{}) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return resourceAwsElbUpdate(d, meta)
|
return resourceAwsElbUpdate(d, meta)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -304,6 +310,22 @@ func resourceAwsElbUpdate(d *schema.ResourceData, meta interface{}) error {
|
||||||
d.SetPartial("instances")
|
d.SetPartial("instances")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log.Println("[INFO] outside modify attributes")
|
||||||
|
if d.HasChange("cross_zone_load_balancing") {
|
||||||
|
log.Println("[INFO] inside modify attributes")
|
||||||
|
attrs := elb.ModifyLoadBalancerAttributes{
|
||||||
|
LoadBalancerName: d.Get("name").(string),
|
||||||
|
LoadBalancerAttributes: elb.LoadBalancerAttributes{
|
||||||
|
CrossZoneLoadBalancingEnabled: d.Get("cross_zone_load_balancing").(bool),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
_, err := elbconn.ModifyLoadBalancerAttributes(&attrs)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("Failure configuring health check: %s", err)
|
||||||
|
}
|
||||||
|
d.SetPartial("cross_zone_load_balancing")
|
||||||
|
}
|
||||||
|
|
||||||
d.Partial(false)
|
d.Partial(false)
|
||||||
return resourceAwsElbRead(d, meta)
|
return resourceAwsElbRead(d, meta)
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,8 @@ func TestAccAWSELB_basic(t *testing.T) {
|
||||||
"aws_elb.bar", "listener.0.lb_port", "80"),
|
"aws_elb.bar", "listener.0.lb_port", "80"),
|
||||||
resource.TestCheckResourceAttr(
|
resource.TestCheckResourceAttr(
|
||||||
"aws_elb.bar", "listener.0.lb_protocol", "http"),
|
"aws_elb.bar", "listener.0.lb_protocol", "http"),
|
||||||
|
resource.TestCheckResourceAttr(
|
||||||
|
"aws_elb.bar", "cross_zone_load_balancing", "true"),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -256,6 +258,7 @@ resource "aws_elb" "bar" {
|
||||||
}
|
}
|
||||||
|
|
||||||
instances = []
|
instances = []
|
||||||
|
cross_zone_load_balancing = true
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue