Merge pull request #1285 from captainkerk/autoscaling-load-balancer-target-group-support

Add ELBv2 Support  to Autoscaling Service
This commit is contained in:
Jack Danger 2017-10-23 09:41:52 -07:00 committed by GitHub
commit aaa0202d08
4 changed files with 253 additions and 8 deletions

View file

@ -600,6 +600,11 @@ def test_attach_load_balancer():
)
list(response['LoadBalancerDescriptions'][0]['Instances']).should.have.length_of(INSTANCE_COUNT)
response = client.describe_auto_scaling_groups(
AutoScalingGroupNames=["test_asg"]
)
list(response['AutoScalingGroups'][0]['LoadBalancerNames']).should.have.length_of(1)
@mock_autoscaling
@mock_elb