Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #4415 from meeee/ec2-update-default-amis
Browse files Browse the repository at this point in the history
EC2: Update AMIs to mitigate Meltdown and Spectre
  • Loading branch information
dgageot authored Mar 7, 2018
2 parents 37484ac + 68fb7fc commit 31e63bb
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions drivers/amazonec2/region.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,27 @@ type region struct {
AmiId string
}

// Ubuntu 16.04 LTS 20170619.1 hvm:ebs-ssd (amd64)
// Ubuntu 16.04 LTS 20180228.1 hvm:ebs-ssd (amd64)
// See https://cloud-images.ubuntu.com/locator/ec2/
var regionDetails map[string]*region = map[string]*region{
"ap-northeast-1": {"ami-785c491f"},
"ap-northeast-2": {"ami-94d20dfa"},
"ap-southeast-1": {"ami-2378f540"},
"ap-southeast-2": {"ami-e94e5e8a"},
"ap-south-1": {"ami-49e59a26"},
"ca-central-1": {"ami-7ed56a1a"},
"cn-north-1": {"ami-a163b4cc"}, // Note: this is 20170303
"eu-central-1": {"ami-1c45e273"},
"eu-west-1": {"ami-6d48500b"},
"eu-west-2": {"ami-cc7066a8"},
"eu-west-3": {"ami-c1cf79bc"}, // Note: this is 20180126
"sa-east-1": {"ami-34afc458"},
"us-east-1": {"ami-d15a75c7"},
"us-east-2": {"ami-8b92b4ee"},
"us-west-1": {"ami-73f7da13"},
"us-west-2": {"ami-835b4efa"},
"us-gov-west-1": {"ami-939412f2"},
"ap-northeast-1": {"ami-bcb7f6da"},
"ap-northeast-2": {"ami-5073de3e"},
"ap-southeast-1": {"ami-41e4af3d"},
"ap-southeast-2": {"ami-c1498fa3"},
"ap-south-1": {"ami-1083dc7f"},
"ca-central-1": {"ami-8d9e19e9"},
"cn-north-1": {"ami-cc4499a1"}, // Note: this is 20180126
"cn-northwest-1": {"ami-fd0e1a9f"}, // Note: this is 20180126
"eu-central-1": {"ami-bc4925d3"},
"eu-west-1": {"ami-0b541372"},
"eu-west-2": {"ami-ff46a298"},
"eu-west-3": {"ami-9465d3e9"},
"sa-east-1": {"ami-b5501bd9"},
"us-east-1": {"ami-927185ef"},
"us-east-2": {"ami-b9daeddc"},
"us-west-1": {"ami-264c4646"},
"us-west-2": {"ami-78a22900"},
"us-gov-west-1": {"ami-2561ea44"},
"custom-endpoint": {""},
}

Expand Down

0 comments on commit 31e63bb

Please sign in to comment.