mirror of
https://github.com/distribution/distribution
synced 2024-11-06 19:35:52 +01:00
use aws sdk to validate regions
Signed-off-by: David Wu <david.wu@docker.com>
This commit is contained in:
parent
9bf62ca7b3
commit
0b0d470281
@ -31,6 +31,7 @@ import (
|
||||
"github.com/aws/aws-sdk-go/aws/credentials"
|
||||
"github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds"
|
||||
"github.com/aws/aws-sdk-go/aws/ec2metadata"
|
||||
"github.com/aws/aws-sdk-go/aws/endpoints"
|
||||
"github.com/aws/aws-sdk-go/aws/request"
|
||||
"github.com/aws/aws-sdk-go/aws/session"
|
||||
"github.com/aws/aws-sdk-go/service/s3"
|
||||
@ -105,25 +106,11 @@ type DriverParameters struct {
|
||||
}
|
||||
|
||||
func init() {
|
||||
for _, region := range []string{
|
||||
"us-east-1",
|
||||
"us-east-2",
|
||||
"us-west-1",
|
||||
"us-west-2",
|
||||
"eu-west-1",
|
||||
"eu-west-2",
|
||||
"eu-central-1",
|
||||
"ap-south-1",
|
||||
"ap-southeast-1",
|
||||
"ap-southeast-2",
|
||||
"ap-northeast-1",
|
||||
"ap-northeast-2",
|
||||
"sa-east-1",
|
||||
"cn-north-1",
|
||||
"us-gov-west-1",
|
||||
"ca-central-1",
|
||||
} {
|
||||
validRegions[region] = struct{}{}
|
||||
partitions := endpoints.DefaultPartitions()
|
||||
for _, p := range partitions {
|
||||
for region := range p.Regions() {
|
||||
validRegions[region] = struct{}{}
|
||||
}
|
||||
}
|
||||
|
||||
for _, objectACL := range []string{
|
||||
|
Loading…
Reference in New Issue
Block a user