List of Atlassian AMI IDs
Atlassian's AMIs (and hence, their IDs) may change with each release of Bamboo, including both major and minor releases. If you want to find out the AMI IDs for a version of Bamboo, this is the correct place.
To automatically find the correct AMI IDs for your Bamboo version, run the following script:
#!/bin/sh
if [ $# -eq 0 ]; then
echo "Usage: `basename $0` [Bamboo version]"
exit 0
fi
bambooVersion=$1
echo "Retrieving elastic image version for Bamboo ${bambooVersion}..."
elasticImageVersion="$(curl -v --silent -L https://maven.atlassian.com/content/groups/public/com/atlassian/bamboo/atlassian-bamboo/${bambooVersion}/atlassian-bamboo-$bambooVersion.pom 2>&1 | grep \<elastic-image.version\> | sed -e 's/<[^>]*>//g' -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')"
echo "Elastic image version is $elasticImageVersion"
curl -v --silent -L https://maven.atlassian.com/content/groups/public/com/atlassian/bamboo/atlassian-bamboo-elastic-image/$elasticImageVersion/atlassian-bamboo-elastic-image-$elasticImageVersion.ami 2>&1 | grep image.
echo "REMEMBER: Use the image from the appropriate region!"
Last modified on Jul 15, 2019
Powered by Confluence and Scroll Viewport.