1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

The cloudformation module argument spec should match the documentation, so that template_parameters is a required argument.

This commit is contained in:
Jharrod LaFon 2013-08-27 15:09:30 -06:00
parent 8ec806905d
commit be57d7cc99

View file

@ -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),