* ROLLBACK_COMPLETE is a failure state Fixes #24578 * Adding AWS documentation on Stack status * Fixed comment
This commit is contained in:
parent
b230b03045
commit
3eb8142a41
1 changed files with 4 additions and 2 deletions
|
@ -343,8 +343,10 @@ def stack_operation(cfn, stack_name, operation):
|
|||
else:
|
||||
ret.update({'changed': False, 'failed': True, 'output' : 'Stack not found.'})
|
||||
return ret
|
||||
elif stack['StackStatus'].endswith('_ROLLBACK_COMPLETE'):
|
||||
ret.update({'changed': True, 'failed' :True, 'output': 'Problem with %s. Rollback complete' % operation})
|
||||
# it covers ROLLBACK_COMPLETE and UPDATE_ROLLBACK_COMPLETE
|
||||
# Possible states: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-describing-stacks.html#w1ab2c15c17c21c13
|
||||
elif stack['StackStatus'].endswith('ROLLBACK_COMPLETE'):
|
||||
ret.update({'changed': True, 'failed': True, 'output': 'Problem with %s. Rollback complete' % operation})
|
||||
return ret
|
||||
# note the ordering of ROLLBACK_COMPLETE and COMPLETE, because otherwise COMPLETE will match both cases.
|
||||
elif stack['StackStatus'].endswith('_COMPLETE'):
|
||||
|
|
Loading…
Reference in a new issue