Where to find EC2 Image Builder managed images?

0

During an image recipe creation I have the option to select image versions which are more recent than what is available in the Marketplace search. In the UI these images are referred to as "Image Builder managed images" or "Amazon curated images".

How can I find these images directly in the Marketplace or the AMI ids?

Looking at the EventBridge event, I can see this ARN, but not sure how to find it in the Marketplace.

"parentImage": "arn:aws:imagebuilder:us-east-2:aws:image/ubuntu-server-22-lts-arm64/2024.1.26",

As an example, here I can see Ubuntu images from 2024 updates:

Enter image description here

Both in the Marketplace, and via the quick start images EC2 console, I only have options for 2023 images.

Enter image description here

Enter image description here

asked 3 months ago273 views
1 Answer
1
Accepted Answer

The easiest way to find Image Builder managed images is directly through the EC2 Image Builder Console. AWS often publishes identifiers for official images to the AWS Systems Manager Parameter Store. You can query the Parameter Store to find the latest image identifiers. or example, to find the latest Amazon Linux 2 image, you would use:

aws ssm get-parameters --names /aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2

You would need to adjust the parameter name for the specific image you are looking for.

If this has answered your question or was helpful, accepting the answer would be greatly appreciated. Thank you!

profile picture
EXPERT
answered 3 months ago
  • In Parameter Store I tried searching for "2024" under the "Canonical" service, but there are no results.

  • I was able to find the latest Ubuntu image using aws ssm get-parameters --region us-east-2 --names /aws/service/canonical/ubuntu/server/22.04/stable/current/arm64/hvm/ebs-gp2/ami-id following the Canonical docs.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions