Skip to content

Commit

Permalink
Merge pull request ansible#6852 from tedder/patch-1
Browse files Browse the repository at this point in the history
cloudformation's disable_rollback must be a bool
  • Loading branch information
mpdehaan committed Apr 4, 2014
2 parents 04b5ad7 + d544eb3 commit 466ab0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/cloud/cloudformation
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def main():
template_parameters=dict(required=False, type='dict', default={}),
state=dict(default='present', choices=['present', 'absent']),
template=dict(default=None, required=True),
disable_rollback=dict(default=False),
disable_rollback=dict(default=False, type='bool'),
tags=dict(default=None)
)
)
Expand Down

0 comments on commit 466ab0a

Please sign in to comment.