mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Removes orphaned code.
This commit is contained in:
parent
17cd9d18b0
commit
f59a1348ad
1 changed files with 0 additions and 20 deletions
|
@ -373,26 +373,6 @@ def create_autoscaling_group(connection, module):
|
||||||
module.fail_json(msg=str(e))
|
module.fail_json(msg=str(e))
|
||||||
|
|
||||||
|
|
||||||
result = as_groups[0]
|
|
||||||
module.exit_json(changed=changed, name=result.name,
|
|
||||||
autoscaling_group_arn=result.autoscaling_group_arn,
|
|
||||||
availability_zones=result.availability_zones,
|
|
||||||
created_time=str(result.created_time),
|
|
||||||
default_cooldown=result.default_cooldown,
|
|
||||||
health_check_period=result.health_check_period,
|
|
||||||
health_check_type=result.health_check_type,
|
|
||||||
instance_id=result.instance_id,
|
|
||||||
instances=[instance.instance_id for instance in result.instances],
|
|
||||||
launch_config_name=result.launch_config_name,
|
|
||||||
load_balancers=result.load_balancers,
|
|
||||||
min_size=result.min_size, max_size=result.max_size,
|
|
||||||
placement_group=result.placement_group,
|
|
||||||
wait_timeout = dict(default=300),
|
|
||||||
tags=result.tags,
|
|
||||||
termination_policies=result.termination_policies,
|
|
||||||
vpc_zone_identifier=result.vpc_zone_identifier)
|
|
||||||
|
|
||||||
|
|
||||||
def delete_autoscaling_group(connection, module):
|
def delete_autoscaling_group(connection, module):
|
||||||
group_name = module.params.get('name')
|
group_name = module.params.get('name')
|
||||||
groups = connection.get_all_groups(names=[group_name])
|
groups = connection.get_all_groups(names=[group_name])
|
||||||
|
|
Loading…
Reference in a new issue