From 66d3d75b351fa153e78edbe91731113a353dd6f6 Mon Sep 17 00:00:00 2001 From: Matt Ferrante Date: Mon, 14 Jul 2014 12:52:33 -0400 Subject: [PATCH] Added setting of the health_check options on an existing ASG --- library/cloud/ec2_asg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/library/cloud/ec2_asg b/library/cloud/ec2_asg index 94cab197335..162d22fda1f 100755 --- a/library/cloud/ec2_asg +++ b/library/cloud/ec2_asg @@ -120,7 +120,8 @@ except ImportError: sys.exit(1) ASG_ATTRIBUTES = ('launch_config_name', 'max_size', 'min_size', 'desired_capacity', - 'vpc_zone_identifier', 'availability_zones') + 'vpc_zone_identifier', 'availability_zones', + 'health_check_period', 'health_check_type') def enforce_required_arguments(module): ''' As many arguments are not required for autoscale group deletion