From 03fc2714f1ba474c966349a3fa17786338a4f71d Mon Sep 17 00:00:00 2001 From: Matt Ferrante Date: Thu, 10 Jul 2014 11:01:19 -0400 Subject: [PATCH] fixed the choices typo got the ec2_asg module --- library/cloud/ec2_asg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/cloud/ec2_asg b/library/cloud/ec2_asg index 0a5b7264a41..94cab197335 100755 --- a/library/cloud/ec2_asg +++ b/library/cloud/ec2_asg @@ -291,7 +291,7 @@ def main(): state=dict(default='present', choices=['present', 'absent']), tags=dict(type='list', default=[]), health_check_period=dict(type='int', default=300), - health_check_type=dict(default='EC2', chices=['EC2', 'ELB']), + health_check_type=dict(default='EC2', choices=['EC2', 'ELB']), ) ) module = AnsibleModule(argument_spec=argument_spec)