From 7018517374a3be807452e73f52197ff47adf7e10 Mon Sep 17 00:00:00 2001 From: Chulki Lee Date: Mon, 11 Jan 2016 13:04:35 -0800 Subject: [PATCH] one region per line, sorted --- builder/amazon/common/regions.go | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/builder/amazon/common/regions.go b/builder/amazon/common/regions.go index e524a1cdd..a8846a43e 100644 --- a/builder/amazon/common/regions.go +++ b/builder/amazon/common/regions.go @@ -3,9 +3,19 @@ package common // IsValidRegion returns true if the supplied region is a valid AWS // region and false if it's not. func ValidateRegion(region string) bool { - var regions = [11]string{"ap-northeast-1", "ap-southeast-1", "ap-southeast-2", - "cn-north-1", "eu-central-1", "eu-west-1", "sa-east-1", - "us-east-1", "us-gov-west-1", "us-west-1", "us-west-2"} + var regions = [11]string{ + "ap-northeast-1", + "ap-southeast-1", + "ap-southeast-2", + "cn-north-1", + "eu-central-1", + "eu-west-1", + "sa-east-1", + "us-east-1", + "us-gov-west-1", + "us-west-1", + "us-west-2", + } for _, valid := range regions { if region == valid {