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.

32 lines
840 B

  1. import json
  2. import boto3
  3. ################################################################################################
  4. #
  5. # Configuration Parameters
  6. #
  7. ################################################################################################
  8. region = 'eu-central-1'
  9. stackName = 'cloudcomp-counter-demo-stack'
  10. ################################################################################################
  11. #
  12. # boto3 code
  13. #
  14. ################################################################################################
  15. client = boto3.setup_default_session(region_name=region)
  16. cfClient = boto3.client('cloudformation')
  17. print("Showing stack...")
  18. print("------------------------------------")
  19. response = cfClient.describe_stacks(
  20. StackName=stackName,
  21. )
  22. print(json.dumps(response, indent=4, sort_keys=True, default=str))