Skip to content

Commit

Permalink
Merge pull request #5045 from tpounds/fix-read-aws-asg-elbs
Browse files Browse the repository at this point in the history
provider/aws: Fix reading auto scaling group load balancers
  • Loading branch information
stack72 committed Feb 8, 2016
2 parents f6822dc + 8ceeaaf commit 83b1c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_autoscaling_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func resourceAwsAutoscalingGroupRead(d *schema.ResourceData, meta interface{}) e
d.Set("health_check_grace_period", g.HealthCheckGracePeriod)
d.Set("health_check_type", g.HealthCheckType)
d.Set("launch_configuration", g.LaunchConfigurationName)
d.Set("load_balancers", g.LoadBalancerNames)
d.Set("load_balancers", flattenStringList(g.LoadBalancerNames))
d.Set("min_size", g.MinSize)
d.Set("max_size", g.MaxSize)
d.Set("placement_group", g.PlacementGroup)
Expand Down

0 comments on commit 83b1c4a

Please sign in to comment.