bootstrap-vz/providers/ec2/tasks/ami-akis.json
Anders Ingemann 46dbe9e8c6 Move AKI info into JSON file. Fixes #13
Also introduced config_get() to retrieve a specific value from
these JSON files. Comments are now supported in those files as well
2014-02-27 23:02:58 +01:00

34 lines
1.8 KiB
JSON

// This is a mapping of EC2 regions to processor architectures to Amazon Kernel Images
// Source: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html#AmazonKernelImageIDs
{
"ap-northeast-1": // Asia Pacific (Tokyo) Region
{"i386": "aki-136bf512", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-176bf516"}, // pv-grub-hd0_1.04-x86_64.gz
"ap-southeast-1": // Asia Pacific (Singapore) Region
{"i386": "aki-ae3973fc", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-503e7402"}, // pv-grub-hd0_1.04-x86_64.gz
"ap-southeast-2": // Asia Pacific (Sydney) Region
{"i386": "aki-cd62fff7", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-c362fff9"}, // pv-grub-hd0_1.04-x86_64.gz
"eu-west-1": // EU (Ireland) Region
{"i386": "aki-68a3451f", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-52a34525"}, // pv-grub-hd0_1.04-x86_64.gz
"sa-east-1": // South America (Sao Paulo) Region
{"i386": "aki-5b53f446", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-5553f448"}, // pv-grub-hd0_1.04-x86_64.gz
"us-east-1": // US East (Northern Virginia) Region
{"i386": "aki-8f9dcae6", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-919dcaf8"}, // pv-grub-hd0_1.04-x86_64.gz
"us-gov-west-1": // AWS GovCloud (US)
{"i386": "aki-1fe98d3c", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-1de98d3e"}, // pv-grub-hd0_1.04-x86_64.gz
"us-west-1": // US West (Northern California) Region
{"i386": "aki-8e0531cb", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-880531cd"}, // pv-grub-hd0_1.04-x86_64.gz
"us-west-2": // US West (Oregon) Region
{"i386": "aki-f08f11c0", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-fc8f11cc"}, // pv-grub-hd0_1.04-x86_64.gz
"cn-north-1":// China North (Beijing) Region
{"i386": "aki-908f1da9", // pv-grub-hd0_1.04-i386.gz
"amd64": "aki-9e8f1da7"} // pv-grub-hd0_1.04-x86_64.gz
}