Merge pull request #6366 from cloudify/devel
Fix for #6365: cloudformation module fails to update if stack exists
This commit is contained in:
commit
1cc6a591c5
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ def main():
|
|||
operation = 'CREATE'
|
||||
except 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
|
||||
else:
|
||||
module.fail_json(msg=error_msg)
|
||||
|
|
Loading…
Reference in a new issue