-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
provider/aws: Add support for AWS US East (Ohio) region. #9414
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just waiting for Travis :P
Official blog post, for posterity: https://aws.amazon.com/blogs/aws/now-open-aws-us-east-ohio-region/ :) |
Looking into that test failure now. |
@mattmoyer needs |
@mattmoyer @catsby why not to make it just a slice? :) |
@kwilczynski I'm going to :D |
@@ -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 = []string{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
And there was much rejoice! |
Thank you :D |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Adds support for the new
us-east-2
AWS region (blog post).