I need to build some custom AMIs using Amazon’s Elastic Beanstalk amis as a starting point (with Java and Tomcat). I know what the values are for the US, but what are they for the eu-west-1 region?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I might be able to answer this question myself using the command line tool “ec2-describe-images”.
Using the following provides a list of AMIs of which the official US ones are present in the list (see https://forums.aws.amazon.com/ann.jspa?annID=1363 ):
ec2-describe-images –owner amazon –filter “architecture=x86_64” –filter “manifest-location=ElasticBeanstalk“
So now I run the same thing for region eu-west-1…
ec2-describe-images –region eu-west-1 –owner amazon –filter “architecture=x86_64” –filter “manifest-location=ElasticBeanstalk“
And I find that for eu-west-1…
32bit Amazon Linux running Tomcat 6: ami-33261d47
64bit Amazon Linux running Tomcat 6: ami-35261d41
32bit Amazon Linux running Tomcat 7: ami-37261d43
64bit Amazon Linux running Tomcat 7: ami-4b261d3f
Cheers !!!