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

已提问 3 个月前295 查看次数
1 回答
2
已接受的回答

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
专家
已回答 3 个月前
profile picture
专家
已审核 4 天前
  • 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.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则