8000 Helper changes to support `eksctl` and CDK L2 EKS construct by simonrw · Pull Request #9309 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Helper changes to support eksctl and CDK L2 EKS construct #9309

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

Merged
merged 4 commits into from
Oct 17, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
deploy_cfn_template deletes stacks in reverse order of creation
  • Loading branch information
simonrw committed Oct 16, 2023
commit 65310fc93a6707ca075955b9c3e7cd7d7a668d28
3 changes: 2 additions & 1 deletion localstack/testing/pytest/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,7 +1048,8 @@ def _destroy_stack():

yield _deploy

for entry in state:
# delete the stacks in the reverse order they were created in case of inter-stack dependencies
for entry in state[::-1]:
entry_stack_id = entry.get("stack_id")
try:
if entry_stack_id:
Expand Down
0