8 lines
520 B
Bash
Executable File
8 lines
520 B
Bash
Executable File
# Turning off the AWS pager so that the CLI doesn't open an editor for each command result
|
|
export AWS_PAGER=""
|
|
|
|
aws cloudformation delete-stack --stack-name reflectoring-ecs-zero-downtime-deployment-service
|
|
aws cloudformation wait stack-delete-complete --stack-name reflectoring-ecs-zero-downtime-deployment-service
|
|
|
|
aws cloudformation delete-stack --stack-name reflectoring-ecs-zero-downtime-deployment-network
|
|
aws cloudformation wait stack-delete-complete --stack-name reflectoring-ecs-zero-downtime-deployment-network |