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.
cd ~/environment
curl -s https://raw.githubusercontent.com/aws-containers/appmeshworkshop/main/templates/appmesh-baseline.yml -o appmesh-baseline.yml
# Define environment variable
IAM_ROLE=$(curl -s 169.254.169.254/latest/meta-data/iam/info | \
jq -r '.InstanceProfileArn' | cut -d'/' -f2)
#Check if the template is already deployed. If not, deploy it
CFN_TEMPLATE=$(aws cloudformation list-stacks | jq -c '.StackSummaries[].StackName | select( . == "appmesh-workshop" )')
if [ -z "$CFN_TEMPLATE" ]
then
echo "Deploying Cloudformation Template"
aws cloudformation deploy \
--template-file appmesh-baseline.yml \
--stack-name appmesh-workshop \
--capabilities CAPABILITY_IAM \
--parameter-overrides Cloud9IAMRole=$IAM_ROLE
else
echo "Template already deployed. Go ahead to the next chapter."
fi
The CloudFormation template will launch the following:
This is the detailed application architecture: