List of Atlassian AMI IDs
Platform Notice: Cloud and Data Center - This article applies equally to both cloud and data center platforms.
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
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:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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!"
If the script does not work for you, follow these instructions....
Copy and paste the following URL in a web browser, replacing $BAMBOO_VERSION with the correct version number
https://maven.atlassian.com/content/groups/public/com/atlassian/bamboo/atlassian-bamboo/$BAMBOO_VERSION/atlassian-bamboo-$BAMBOO_VERSION.pom
In the resulting
atlassian-bamboo-x.x.x.pom
file (wherex.x.x
is your version of Bamboo). The image version/baseline is stored inelastic-image.version
tag. For example, for version 5.9.7, the baseline was 4.2 . (<elastic-image.version>4.2</elastic-image.version>)Open the following URL in a web browser, where $ELASTIC_VERSION is the corresponding version you found before
https://maven.atlassian.com/content/groups/public/com/atlassian/bamboo/atlassian-bamboo-elastic-image/$ELASTIC_VERSION/atlassian-bamboo-elastic-image-$ELASTIC_VERSION.ami
The file with
ami
extension contains all stock image AMI ids. Make sure you choose the image from the correct region, ieimage.US_EAST_1.EBS.x86_64.linux.Ubuntu=ami-1c247d74
From documentation:
Was this helpful?