Cleanup updating ASGs. Closes #603.
This commit is contained in:
parent
fd99434b7b
commit
8ce2d3c8bf
2 changed files with 20 additions and 9 deletions
|
|
@ -437,5 +437,9 @@ def test_update_autoscaling_group_boto3():
|
|||
response = client.update_auto_scaling_group(
|
||||
AutoScalingGroupName='test_asg',
|
||||
MinSize=1,
|
||||
DesiredCapacity=1,
|
||||
)
|
||||
|
||||
response = client.describe_auto_scaling_groups(
|
||||
AutoScalingGroupNames=["test_asg"]
|
||||
)
|
||||
response['AutoScalingGroups'][0]['MinSize'].should.equal(1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue