Skip to content

Commit

Permalink
Add support for AWS US East (Ohio) region.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Moyer committed Oct 17, 2016
1 parent 0e20aa3 commit 82cc3b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builtin/providers/aws/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func (c *Config) Client() (interface{}, error) {
// ValidateRegion returns an error if the configured region is not a
// valid aws region and nil otherwise.
func (c *Config) ValidateRegion() error {
var regions = [13]string{
var regions = [14]string{
"ap-northeast-1",
"ap-northeast-2",
"ap-south-1",
Expand All @@ -304,6 +304,7 @@ func (c *Config) ValidateRegion() error {
"eu-west-1",
"sa-east-1",
"us-east-1",
"us-east-2",
"us-gov-west-1",
"us-west-1",
"us-west-2",
Expand Down

0 comments on commit 82cc3b9

Please sign in to comment.