Spaces:
Sleeping
Sleeping
File size: 384 Bytes
d3abbf7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#! /usr/bin/env bash
set -e # stop the execution of the script if it fails
CONFIG_PATH="/Users/patrickcmd/Projects/sunbirdai/Acres/infra/ecs_config.toml"
REGION=$(cfn-toml key deploy.region -t $CONFIG_PATH)
STACK_NAME=$(cfn-toml key deploy.stack_name -t $CONFIG_PATH)
aws cloudformation delete-stack \
--stack-name $STACK_NAME \
--region $REGION \
--profile sunbirdai |