From be57d7cc99a3b0641e556626d8064966a7187efa Mon Sep 17 00:00:00 2001 From: Jharrod LaFon Date: Tue, 27 Aug 2013 15:09:30 -0600 Subject: [PATCH] The cloudformation module argument spec should match the documentation, so that template_parameters is a required argument. --- library/cloud/cloudformation | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/cloud/cloudformation b/library/cloud/cloudformation index e827c34f9a..ae9f2e0f26 100644 --- a/library/cloud/cloudformation +++ b/library/cloud/cloudformation @@ -159,7 +159,7 @@ def main(): module = AnsibleModule( argument_spec=dict( stack_name=dict(required=True), - template_parameters=dict(required=False), + template_parameters=dict(required=True), region=dict(aliases=['aws_region', 'ec2_region'], required=True, choices=AWS_REGIONS), state=dict(default='present', choices=['present', 'absent']), template=dict(default=None, required=True),