2015-04-05 17:58:48 -04:00
|
|
|
package common
|
|
|
|
|
2016-12-09 14:21:44 -05:00
|
|
|
// aws ec2 describe-regions --query 'Regions[].{Name:RegionName}' --output text | sed 's/\(.*\)/"\1",/' | sort
|
2016-01-12 22:03:21 -05:00
|
|
|
func listEC2Regions() []string {
|
|
|
|
return []string{
|
2016-01-11 16:04:35 -05:00
|
|
|
"ap-northeast-1",
|
2016-01-11 16:05:18 -05:00
|
|
|
"ap-northeast-2",
|
2018-06-14 12:16:01 -04:00
|
|
|
"ap-northeast-3",
|
2016-06-29 10:44:02 -04:00
|
|
|
"ap-south-1",
|
2016-01-11 16:04:35 -05:00
|
|
|
"ap-southeast-1",
|
|
|
|
"ap-southeast-2",
|
2016-12-09 14:21:44 -05:00
|
|
|
"ca-central-1",
|
2016-01-11 16:04:35 -05:00
|
|
|
"eu-central-1",
|
|
|
|
"eu-west-1",
|
2016-12-14 04:55:19 -05:00
|
|
|
"eu-west-2",
|
2017-12-19 04:00:03 -05:00
|
|
|
"eu-west-3",
|
2016-01-11 16:04:35 -05:00
|
|
|
"sa-east-1",
|
|
|
|
"us-east-1",
|
2016-10-17 22:31:41 -04:00
|
|
|
"us-east-2",
|
2016-01-11 16:04:35 -05:00
|
|
|
"us-west-1",
|
|
|
|
"us-west-2",
|
2016-12-09 14:21:44 -05:00
|
|
|
// not part of autogenerated list
|
|
|
|
"us-gov-west-1",
|
|
|
|
"cn-north-1",
|
2018-03-02 03:34:19 -05:00
|
|
|
"cn-northwest-1",
|
2016-01-11 16:04:35 -05:00
|
|
|
}
|
2016-01-12 22:03:21 -05:00
|
|
|
}
|
2015-04-05 17:58:48 -04:00
|
|
|
|
2016-01-12 22:03:21 -05: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
|
|
|
|
}
|