Skip to content

Instantly share code, notes, and snippets.

@ticean
Created November 4, 2011 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ticean/1339656 to your computer and use it in GitHub Desktop.
Save ticean/1339656 to your computer and use it in GitHub Desktop.
CloudFormation Ubuntu AMI Mappings (Canonical)
"Mappings" : {
"AWSInstanceType2Arch" : {
"t1.micro" : { "Arch" : "64" },
"m1.small" : { "Arch" : "32" },
"m1.large" : { "Arch" : "64" },
"m1.xlarge" : { "Arch" : "64" },
"m2.xlarge" : { "Arch" : "64" },
"m2.2xlarge" : { "Arch" : "64" },
"m2.4xlarge" : { "Arch" : "64" },
"c1.medium" : { "Arch" : "32" },
"c1.xlarge" : { "Arch" : "64" },
"cc1.4xlarge" : { "Arch" : "64" }
},
"AWSRegionArch2AMI" : {
"us-east-1" : { "32" : "ami-ab36fbc2", "64" : "ami-ad36fbc4" },
"us-west-1" : { "32" : "ami-eb227eae", "64" : "ami-f5227eb0" },
"eu-west-1" : { "32" : "ami-c00e3cb4", "64" : "ami-cc0e3cb8" },
"ap-southeast-1" : { "32" : "ami-ea205ab8", "64" : "ami-e8205aba" },
"ap-northeast-1" : { "32" : "ami-78b40079", "64" : "ami-7ab4007b" }
}
}
"Mappings" : {
"AWSInstanceType2Arch" : {
"t1.micro" : { "Arch" : "64" },
"m1.small" : { "Arch" : "32" },
"m1.large" : { "Arch" : "64" },
"m1.xlarge" : { "Arch" : "64" },
"m2.xlarge" : { "Arch" : "64" },
"m2.2xlarge" : { "Arch" : "64" },
"m2.4xlarge" : { "Arch" : "64" },
"c1.medium" : { "Arch" : "32" },
"c1.xlarge" : { "Arch" : "64" },
"cc1.4xlarge" : { "Arch" : "64" }
},
"AWSRegionArch2AMI" : {
"us-east-1" : { "32" : "ami-e358958a", "64" : "ami-fd589594" },
"us-west-1" : { "32" : "ami-43580406", "64" : "ami-4d580408" },
"eu-west-1" : { "32" : "ami-a4f7c5d0", "64" : "ami-a6f7c5d2" },
"ap-southeast-1" : { "32" : "ami-06255f54", "64" : "ami-04255f56" },
"ap-northeast-1" : { "32" : "ami-00b10501", "64" : "ami-02b10503" }
}
}
@kixorz
Copy link

kixorz commented Apr 7, 2014

I made a tool that generates these in realtime from Ubuntu Cloud images service: http://aws-ubuntu.herokuapp.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment