Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix - check stack is ready for cc to be created #1910

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions plugins/modules/cloudformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,12 @@ def check_mode_changeset(module, stack_params, cfn):
stack_params.pop("ClientRequestToken", None)

try:
for _i in range(60): # total time 5 min
# check stack is ready to have a change set created
stack = get_stack_facts(module, cfn, stack_params['StackName'], raise_errors=True)
if stack["StackStatus"].endswith('_COMPLETE'):
break
time.sleep(5)
change_set = cfn.create_change_set(aws_retry=True, **stack_params)
for _i in range(60): # total time 5 min
description = cfn.describe_change_set(aws_retry=True, ChangeSetName=change_set["Id"])
Expand Down
Loading