Add missing Linode S3 regions

This commit is contained in:
Johannes Zellner
2023-10-17 15:34:19 +02:00
parent 47d7536e24
commit 36c4772b17

View File

@@ -195,11 +195,24 @@ const REGIONS_SCALEWAY = [
{ name: 'Warsaw (PL-WAW)', value: 'https://s3.pl-waw.scw.cloud', region: 'nl-ams' }
];
// https://www.linode.com/docs/products/storage/object-storage/#availability
const REGIONS_LINODE = [
{ name: 'Atlanta', value: 'us-southeast-1.linodeobjects.com', region: 'us-east-1' }, // default
{ name: 'Newark', value: 'us-east-1.linodeobjects.com', region: 'us-east-1' },
{ name: 'Frankfurt', value: 'eu-central-1.linodeobjects.com', region: 'us-east-1' },
{ name: 'Singapore', value: 'ap-south-1.linodeobjects.com', region: 'us-east-1' }
{ name: 'Amsterdam', region: 'nl-ams-1' },
{ name: 'Atlanta', region: 'us-southeast-1' },
{ name: 'Chennai', region: 'in-maa-1' },
{ name: 'Chicago', region: 'us-ord-1' },
{ name: 'Frankfurt', region: 'eu-central-1' },
{ name: 'Jakarta', region: 'id-cgk-1' },
{ name: 'Miami', region: 'us-mia-1' },
{ name: 'Milan', region: 'it-mil-1' },
{ name: 'Newark', region: 'us-east-1' }, // default
{ name: 'Osaka', region: 'jp-osa-1' },
{ name: 'Paris', region: 'fr-par-1' },
{ name: 'Sao Paulo', region: 'br-gru-1' },
{ name: 'Seattle', region: 'us-sea-1' },
{ name: 'Singapore', region: 'ap-south-1' },
{ name: 'Stockholm', region: 'se-sto-1' },
{ name: 'Washington', region: 'us-iad-1' },
];
// note: ovh also has a storage endpoint but that only supports path style access (https://docs.ovh.com/au/en/storage/object-storage/s3/location/)