We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b04111 commit 9c61311Copy full SHA for 9c61311
cmd/regioncheck/regioncheck.go
@@ -14,7 +14,7 @@ import (
14
"sync"
15
)
16
17
-// eq compares sorted string slices. Once we move to Golang 1.21, use slices.Equal instead.
+// eq compares sorted string slices. TODO: Once we move to Golang 1.21, use slices.Equal instead.
18
func eq(f []string, s []string) bool {
19
if len(f) != len(s) {
20
return false
provider/providers.go
@@ -44,10 +44,12 @@ var AllProviders = []string{
44
}
45
46
var ProviderRegions = map[string][]string{
47
- "digitalocean": {"ams3", "blr1", "fra1", "nyc3", "sfo2", "sfo3", "sgp1", "syd1"},
+ "digitalocean": {"ams3", "blr1", "fra1", "lon1", "nyc3", "sfo2", "sfo3", "sgp1", "syd1"},
48
"dreamhost": {"us-east-1"},
49
- "linode": {"ap-south-1", "eu-central-1", "fr-par-1", "se-sto-1", "us-east-1", "us-iad-1", "us-ord-1", "us-southeast-1"},
50
- "scaleway": {"fr-par", "nl-ams", "pl-waw"},
+ "linode": {"ap-south-1", "br-gru-1", "es-mad-1", "eu-central-1", "fr-par-1", "id-cgk-1", "in-maa-1",
+ "it-mil-1", "jp-osa-1", "nl-ams-1", "se-sto-1", "us-east-1", "us-iad-1", "us-lax-1", "us-mia-1",
51
+ "us-ord-1", "us-sea-1", "us-southeast-1"},
52
+ "scaleway": {"fr-par", "nl-ams", "pl-waw"},
53
54
55
func NewProvider(name string) (StorageProvider, error) {
0 commit comments