Delete the baseline template

Please note that this workshop has been archived and is not actively maintained. On September 30, 2026, AWS will discontinue support for AWS App Mesh. For more information, visit this blog post.

  • Delete the infrastructure deployed by the baseline template.
 # Define variables #
STACK_NAME=$(jq < cfn-output.json -r '.StackName');
# Delete cloudformation stack #
aws cloudformation delete-stack \
  --stack-name $STACK_NAME
aws cloudformation wait stack-delete-complete \
  --stack-name $STACK_NAME