2015-04-05 17:58:48 -04:00
|
|
|
package common
|
|
|
|
|
2016-12-09 11:21:44 -08:00
|
|
|
// aws ec2 describe-regions --query 'Regions[].{Name:RegionName}' --output text | sed 's/\(.*\)/"\1",/' | sort
|
2016-01-12 19:03:21 -08:00
|
|
|
func listEC2Regions() []string {
|
|
|
|
return []string{
|
2016-01-11 13:04:35 -08:00
|
|
|
"ap-northeast-1",
|
2016-01-11 13:05:18 -08:00
|
|
|
"ap-northeast-2",
|
2016-06-29 15:44:02 +01:00
|
|
|
"ap-south-1",
|
2016-01-11 13:04:35 -08:00
|
|
|
"ap-southeast-1",
|
|
|
|
"ap-southeast-2",
|
2016-12-09 11:21:44 -08:00
|
|
|
"ca-central-1",
|
2016-01-11 13:04:35 -08:00
|
|
|
"eu-central-1",
|
|
|
|
"eu-west-1",
|
2016-12-14 10:55:19 +01:00
|
|
|
"eu-west-2",
|
2016-01-11 13:04:35 -08:00
|
|
|
"sa-east-1",
|
|
|
|
"us-east-1",
|
2016-10-17 21:31:41 -05:00
|
|
|
"us-east-2",
|
2016-01-11 13:04:35 -08:00
|
|
|
"us-west-1",
|
|
|
|
"us-west-2",
|
2016-12-09 11:21:44 -08:00
|
|
|
// not part of autogenerated list
|
|
|
|
"us-gov-west-1",
|
|
|
|
"cn-north-1",
|
2016-01-11 13:04:35 -08:00
|
|
|
}
|
2016-01-12 19:03:21 -08:00
|
|
|
}
|
2015-04-05 17:58:48 -04:00
|
|
|
|
2016-01-12 19:03:21 -08:00
|
|
|
// ValidateRegion returns true if the supplied region is a valid AWS
|
|
|
|
// region and false if it's not.
|
|
|
|
func ValidateRegion(region string) bool {
|
|
|
|
for _, valid := range listEC2Regions() {
|
2015-04-05 17:58:48 -04:00
|
|
|
if region == valid {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|