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
專家
已審閱 5 天前
  • 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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南