Skip to content
Snippets Groups Projects
Unverified Commit 9ed62e78 authored by Tomasz Maczukin's avatar Tomasz Maczukin
Browse files

Add missing regions

parent a844a66a
No related branches found
No related tags found
No related merge requests found
...@@ -105,7 +105,7 @@ You can use environment variables: ...@@ -105,7 +105,7 @@ You can use environment variables:
## Default AMIs ## Default AMIs
By default, the Amazon EC2 driver will use a daily image of Ubuntu 15.10. By default, the Amazon EC2 driver will use the Ubuntu 20.04 image for the given region:
| Region | AMI ID | | Region | AMI ID |
| -------------- | ------------ | | -------------- | ------------ |
...@@ -113,23 +113,28 @@ By default, the Amazon EC2 driver will use a daily image of Ubuntu 15.10. ...@@ -113,23 +113,28 @@ By default, the Amazon EC2 driver will use a daily image of Ubuntu 15.10.
| ap-east-1 | ami-0350928fdb53ae439 | | ap-east-1 | ami-0350928fdb53ae439 |
| ap-northeast-1 | ami-0a3eb6ca097b78895 | | ap-northeast-1 | ami-0a3eb6ca097b78895 |
| ap-northeast-2 | ami-0225bc2990c54ce9a | | ap-northeast-2 | ami-0225bc2990c54ce9a |
| ap-northeast-3 | ami-0c2223049202ca738 |
| ap-south-1 | ami-05ba3a39a75be1ec4 |
| ap-southeast-1 | ami-0750a20e9959e44ff | | ap-southeast-1 | ami-0750a20e9959e44ff |
| ap-southeast-2 | ami-0d539270873f66397 | | ap-southeast-2 | ami-0d539270873f66397 |
| ap-south-1 | ami-05ba3a39a75be1ec4 | | ap-southeast-3 | ami-0f06496957d1fe04a |
| ca-central-1 | ami-073c944d45ffb4f27 | | ca-central-1 | ami-073c944d45ffb4f27 |
| cn-north-1 | ami-0741e7b8b4fb0001c | | cn-north-1 | ami-0741e7b8b4fb0001c |
| cn-northwest-1 | ami-0883e8062ff31f727 | | cn-northwest-1 | ami-0883e8062ff31f727 |
| eu-north-1 | ami-09f0506c9ef0fb473 |
| eu-central-1 | ami-02584c1c9d05efa69 | | eu-central-1 | ami-02584c1c9d05efa69 |
| eu-north-1 | ami-09f0506c9ef0fb473 |
| eu-south-1 | ami-06ea0ad3f5adc2565 |
| eu-west-1 | ami-00e7df8df28dfa791 | | eu-west-1 | ami-00e7df8df28dfa791 |
| eu-west-2 | ami-00826bd51e68b1487 | | eu-west-2 | ami-00826bd51e68b1487 |
| eu-west-3 | ami-0a21d1c76ac56fee7 | | eu-west-3 | ami-0a21d1c76ac56fee7 |
| me-south-1 | ami-05b680b37c7917206 |
| sa-east-1 | ami-077518a464c82703b | | sa-east-1 | ami-077518a464c82703b |
| us-east-1 | ami-0c4f7023847b90238 | | us-east-1 | ami-0c4f7023847b90238 |
| us-east-2 | ami-0eea504f45ef7a8f7 | | us-east-2 | ami-0eea504f45ef7a8f7 |
| us-gov-east-1 | ami-0eb7ef4cc0594fa04 |
| us-gov-west-1 | ami-029a634618d6c0300 |
| us-west-1 | ami-0487b1fe60c1fd1a2 | | us-west-1 | ami-0487b1fe60c1fd1a2 |
| us-west-2 | ami-0cb4e786f15603b0d | | us-west-2 | ami-0cb4e786f15603b0d |
| us-gov-west-1 | ami-029a634618d6c0300 |
## Security Group ## Security Group
......
...@@ -8,30 +8,35 @@ type region struct { ...@@ -8,30 +8,35 @@ type region struct {
AmiId string AmiId string
} }
// Ubuntu 20.04 LTS 20180228.1 hvm:ebs-ssd (amd64) // Ubuntu 20.04 LTS 20220420 hvm:ebs-ssd (amd64)
// See https://cloud-images.ubuntu.com/locator/ec2/ // See https://cloud-images.ubuntu.com/locator/ec2/
var regionDetails map[string]*region = map[string]*region{ var regionDetails = map[string]*region{
"af-south-1": {"ami-0670428c515903d37"}, "af-south-1": {AmiId: "ami-0670428c515903d37"},
"ap-east-1": {"ami-0350928fdb53ae439"}, "ap-east-1": {AmiId: "ami-0350928fdb53ae439"},
"ap-northeast-1": {"ami-0a3eb6ca097b78895"}, "ap-northeast-1": {AmiId: "ami-0a3eb6ca097b78895"},
"ap-northeast-2": {"ami-0225bc2990c54ce9a"}, "ap-northeast-2": {AmiId: "ami-0225bc2990c54ce9a"},
"ap-southeast-1": {"ami-0750a20e9959e44ff"}, "ap-northeast-3": {AmiId: "ami-0c2223049202ca738"},
"ap-southeast-2": {"ami-0d539270873f66397"}, "ap-south-1": {AmiId: "ami-05ba3a39a75be1ec4"},
"ap-south-1": {"ami-05ba3a39a75be1ec4"}, "ap-southeast-1": {AmiId: "ami-0750a20e9959e44ff"},
"ca-central-1": {"ami-073c944d45ffb4f27"}, "ap-southeast-2": {AmiId: "ami-0d539270873f66397"},
"cn-north-1": {"ami-0741e7b8b4fb0001c"}, "ap-southeast-3": {AmiId: "ami-0f06496957d1fe04a"},
"cn-northwest-1": {"ami-0883e8062ff31f727"}, "ca-central-1": {AmiId: "ami-073c944d45ffb4f27"},
"eu-north-1": {"ami-09f0506c9ef0fb473"}, "cn-north-1": {AmiId: "ami-0741e7b8b4fb0001c"},
"eu-central-1": {"ami-02584c1c9d05efa69"}, "cn-northwest-1": {AmiId: "ami-0883e8062ff31f727"},
"eu-west-1": {"ami-00e7df8df28dfa791"}, "eu-central-1": {AmiId: "ami-02584c1c9d05efa69"},
"eu-west-2": {"ami-00826bd51e68b1487"}, "eu-north-1": {AmiId: "ami-09f0506c9ef0fb473"},
"eu-west-3": {"ami-0a21d1c76ac56fee7"}, "eu-south-1": {AmiId: "ami-06ea0ad3f5adc2565"},
"sa-east-1": {"ami-077518a464c82703b"}, "eu-west-1": {AmiId: "ami-00e7df8df28dfa791"},
"us-east-1": {"ami-0c4f7023847b90238"}, "eu-west-2": {AmiId: "ami-00826bd51e68b1487"},
"us-east-2": {"ami-0eea504f45ef7a8f7"}, "eu-west-3": {AmiId: "ami-0a21d1c76ac56fee7"},
"us-west-1": {"ami-0487b1fe60c1fd1a2"}, "me-south-1": {AmiId: "ami-05b680b37c7917206"},
"us-west-2": {"ami-0cb4e786f15603b0d"}, "sa-east-1": {AmiId: "ami-077518a464c82703b"},
"us-gov-west-1": {"ami-029a634618d6c0300"}, "us-east-1": {AmiId: "ami-0c4f7023847b90238"},
"us-east-2": {AmiId: "ami-0eea504f45ef7a8f7"},
"us-gov-east-1": {AmiId: "ami-0eb7ef4cc0594fa04"},
"us-gov-west-1": {AmiId: "ami-029a634618d6c0300"},
"us-west-1": {AmiId: "ami-0487b1fe60c1fd1a2"},
"us-west-2": {AmiId: "ami-0cb4e786f15603b0d"},
"custom-endpoint": {""}, "custom-endpoint": {""},
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment