From 0b55492cd67e527d52f7a19542f746c6a3269429 Mon Sep 17 00:00:00 2001 From: Alan Schneider Date: Tue, 29 Oct 2019 14:44:58 -0700 Subject: [PATCH] Added US_EAST_2 region (Ohio) to list of valid regions --- common/aws/provider/connection.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/aws/provider/connection.go b/common/aws/provider/connection.go index 8a0733aad..d0f2c4b29 100644 --- a/common/aws/provider/connection.go +++ b/common/aws/provider/connection.go @@ -28,6 +28,7 @@ const ( EU_WEST_1 = "eu-west-1" SA_EAST_1 = "sa-east-1" US_EAST_1 = "us-east-1" + US_EAST_2 = "us-east-2" US_WEST_1 = "us-west-1" US_WEST_2 = "us-west-2" ) @@ -41,6 +42,7 @@ var regionIsValid = func(region string) (isValid bool) { EU_WEST_1, SA_EAST_1, US_EAST_1, + US_EAST_2, US_WEST_1, US_WEST_2, }