2015-04-05 17:58:48 -04:00
|
|
|
package common
|
|
|
|
|
2016-01-11 16:06:34 -05:00
|
|
|
// ValidateRegion returns true if the supplied region is a valid AWS
|
2015-04-05 17:58:48 -04:00
|
|
|
// region and false if it's not.
|
|
|
|
func ValidateRegion(region string) bool {
|
2016-01-11 16:05:18 -05:00
|
|
|
var regions = [12]string{
|
2016-01-11 16:04:35 -05:00
|
|
|
"ap-northeast-1",
|
2016-01-11 16:05:18 -05:00
|
|
|
"ap-northeast-2",
|
2016-01-11 16:04:35 -05:00
|
|
|
"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",
|
|
|
|
}
|
2015-04-05 17:58:48 -04:00
|
|
|
|
|
|
|
for _, valid := range regions {
|
|
|
|
if region == valid {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|