From e30718f139fcad06769fb5aa05a509699d59001d Mon Sep 17 00:00:00 2001 From: Nick Turner Date: Thu, 25 Oct 2018 11:26:50 -0700 Subject: [PATCH] Add regions ap-northeast-3 and eu-west-3 --- pkg/cloudprovider/providers/aws/regions.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/cloudprovider/providers/aws/regions.go b/pkg/cloudprovider/providers/aws/regions.go index e97f88fc90f..8cbb553c3f9 100644 --- a/pkg/cloudprovider/providers/aws/regions.go +++ b/pkg/cloudprovider/providers/aws/regions.go @@ -29,6 +29,7 @@ var wellKnownRegions = [...]string{ // from `aws ec2 describe-regions --region us-east-1 --query Regions[].RegionName | sort` "ap-northeast-1", "ap-northeast-2", + "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", @@ -36,6 +37,7 @@ var wellKnownRegions = [...]string{ "eu-central-1", "eu-west-1", "eu-west-2", + "eu-west-3", "sa-east-1", "us-east-1", "us-east-2",