You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
780 B
30 lines
780 B
import boto3
|
|
|
|
|
|
################################################################################################
|
|
#
|
|
# Configuration Parameters
|
|
#
|
|
################################################################################################
|
|
|
|
|
|
# region = 'eu-central-1'
|
|
region = 'us-east-1'
|
|
stackName = 'cloudcomp-counter-demo-stack'
|
|
|
|
|
|
################################################################################################
|
|
#
|
|
# boto3 code
|
|
#
|
|
################################################################################################
|
|
|
|
|
|
client = boto3.setup_default_session(region_name=region)
|
|
cfClient = boto3.client('cloudformation')
|
|
|
|
print("Deleting stack...")
|
|
print("------------------------------------")
|
|
response = cfClient.delete_stack(
|
|
StackName=stackName,
|
|
)
|