Merge pull request #525 from pmoust/patch-2
provider/aws: update to support more regions
This commit is contained in:
commit
4f70630c52
|
@ -90,8 +90,9 @@ func (c *Config) AWSAuth() (aws.Auth, error) {
|
||||||
// IsValidRegion returns true if the configured region is a valid AWS
|
// IsValidRegion returns true if the configured region is a valid AWS
|
||||||
// region and false if it's not
|
// region and false if it's not
|
||||||
func (c *Config) IsValidRegion() bool {
|
func (c *Config) IsValidRegion() bool {
|
||||||
var regions = [8]string{"us-east-1", "us-west-2", "us-west-1", "eu-west-1",
|
var regions = [11]string{"us-east-1", "us-west-2", "us-west-1", "eu-west-1",
|
||||||
"ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"}
|
"eu-central-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1",
|
||||||
|
"sa-east-1", "cn-north-1", "us-gov-west-1"}
|
||||||
|
|
||||||
for _, valid := range regions {
|
for _, valid := range regions {
|
||||||
if c.Region == valid {
|
if c.Region == valid {
|
||||||
|
|
Loading…
Reference in New Issue