Commit b9ab31eb by Federico Feroldi

Fix for #6365: cloudformation module fails to update if stack exists

parent 53fd5295
...@@ -250,7 +250,7 @@ def main(): ...@@ -250,7 +250,7 @@ def main():
operation = 'CREATE' operation = 'CREATE'
except Exception, err: except Exception, err:
error_msg = boto_exception(err) error_msg = boto_exception(err)
if 'AlreadyExistsException' in error_msg: if 'AlreadyExistsException' in error_msg or 'already exists' in error_msg:
update = True update = True
else: else:
module.fail_json(msg=error_msg) module.fail_json(msg=error_msg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment