Skip to content

Commit 6036c28

Browse files
committed
Merge pull request docker-archive-public#1085 from zchee/update-amazonec2-ami
[EC2] Update AMI to release 20150417
2 parents e2d5aca + 556060f commit 6036c28

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

docs/index.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ Create machines on [Amazon Web Services](http://aws.amazon.com). You will need
926926
Options:
927927

928928
- `--amazonec2-access-key`: **required** Your access key id for the Amazon Web Services API.
929-
- `--amazonec2-ami`: The AMI ID of the instance to use Default: `ami-4ae27e22`
929+
- `--amazonec2-ami`: The AMI ID of the instance to use Default: `ami-cc3b3ea4`
930930
- `--amazonec2-instance-type`: The instance type to run. Default: `t2.micro`
931931
- `--amazonec2-iam-instance-profile`: The AWS IAM role name to be used as the instance profile
932932
- `--amazonec2-region`: The region to use when launching the instance. Default: `us-east-1`
@@ -943,17 +943,17 @@ By default, the Amazon EC2 driver will use a daily image of Ubuntu 14.04 LTS.
943943

944944
| Region | AMI ID |
945945
|:--------------|:-----------|
946-
|ap-northeast-1 |ami-44f1e245|
947-
|ap-southeast-1 |ami-f95875ab|
948-
|ap-southeast-2 |ami-890b62b3|
949-
|cn-north-1 |ami-fe7ae8c7|
950-
|eu-west-1 |ami-823686f5|
951-
|eu-central-1 |ami-ac1524b1|
952-
|sa-east-1 |ami-c770c1da|
953-
|us-east-1 |ami-4ae27e22|
954-
|us-west-1 |ami-d1180894|
955-
|us-west-2 |ami-898dd9b9|
956-
|us-gov-west-1 |ami-cf5630ec|
946+
|ap-northeast-1 |ami-fc11d4fc|
947+
|ap-southeast-1 |ami-7854692a|
948+
|ap-southeast-2 |ami-c5611cff|
949+
|cn-north-1 |ami-7cd84545|
950+
|eu-west-1 |ami-2d96f65a|
951+
|eu-central-1 |ami-3cdae621|
952+
|sa-east-1 |ami-71b2376c|
953+
|us-east-1 |ami-cc3b3ea4|
954+
|us-west-1 |ami-017f9d45|
955+
|us-west-2 |ami-55526765|
956+
|us-gov-west-1 |ami-8ffa9bac|
957957

958958
#### Digital Ocean
959959

drivers/amazonec2/utils.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ type region struct {
1717
}
1818

1919
var regionDetails map[string]*region = map[string]*region{
20-
"ap-northeast-1": {"ami-44f1e245"},
21-
"ap-southeast-1": {"ami-f95875ab"},
22-
"ap-southeast-2": {"ami-890b62b3"},
23-
"cn-north-1": {"ami-fe7ae8c7"},
24-
"eu-west-1": {"ami-823686f5"},
25-
"eu-central-1": {"ami-ac1524b1"},
26-
"sa-east-1": {"ami-c770c1da"},
27-
"us-east-1": {"ami-4ae27e22"},
28-
"us-west-1": {"ami-d1180894"},
29-
"us-west-2": {"ami-898dd9b9"},
30-
"us-gov-west-1": {"ami-cf5630ec"},
20+
"ap-northeast-1": {"ami-fc11d4fc"},
21+
"ap-southeast-1": {"ami-7854692a"},
22+
"ap-southeast-2": {"ami-c5611cff"},
23+
"cn-north-1": {"ami-7cd84545"},
24+
"eu-west-1": {"ami-2d96f65a"},
25+
"eu-central-1": {"ami-3cdae621"},
26+
"sa-east-1": {"ami-71b2376c"},
27+
"us-east-1": {"ami-cc3b3ea4"},
28+
"us-west-1": {"ami-017f9d45"},
29+
"us-west-2": {"ami-55526765"},
30+
"us-gov-west-1": {"ami-8ffa9bac"},
3131
}
3232

3333
func awsRegionsList() []string {

0 commit comments

Comments
 (0)