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.

15 lines
372 B

  1. import time
  2. import boto3
  3. from botocore.exceptions import ClientError
  4. region = 'eu-central-1'
  5. stackName = 'cloudcomp-counter-demo-stack'
  6. client = boto3.setup_default_session(region_name=region)
  7. cfClient = boto3.client('cloudformation')
  8. print("Deleting stack...")
  9. print("------------------------------------")
  10. response = cfClient.delete_stack(
  11. StackName=stackName,
  12. )