87 lines
1.5 KiB
JavaScript
87 lines
1.5 KiB
JavaScript
module.exports = [
|
|
{
|
|
name: 'Ashburn, Virginia, USA',
|
|
continent: 'NORTH_AMERICA',
|
|
datacenters: [
|
|
{
|
|
name: 'us-east-1',
|
|
url: 'http://localhost'
|
|
},
|
|
{
|
|
name: 'us-east-2',
|
|
url: 'http://localhost'
|
|
},
|
|
{
|
|
name: 'us-east-3',
|
|
url: 'http://localhost'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Las Vegas, Nevada, USA',
|
|
continent: 'NORTH_AMERICA',
|
|
datacenters: [
|
|
{
|
|
name: 'us-sw-1',
|
|
url: 'http://localhost'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Emeryville, California, USA',
|
|
continent: 'NORTH_AMERICA',
|
|
datacenters: [
|
|
{
|
|
name: 'us-west-1',
|
|
url: 'http://localhost'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Amsterdam, Netherlands',
|
|
continent: 'EUROPE',
|
|
datacenters: [
|
|
{
|
|
name: 'us-ams-1',
|
|
url: 'http://localhost'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Singapore',
|
|
continent: 'ASIA',
|
|
datacenters: [
|
|
{
|
|
name: 'ap-sg-1',
|
|
url: 'http://localhost'
|
|
},
|
|
{
|
|
name: 'ap-sg-2',
|
|
url: 'http://localhost'
|
|
},
|
|
{
|
|
name: 'ap-sg-3',
|
|
url: 'http://localhost'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Seoul, South Korea',
|
|
continent: 'ASIA',
|
|
datacenters: [
|
|
{
|
|
name: 'ap-kr-1',
|
|
url: 'http://localhost'
|
|
},
|
|
{
|
|
name: 'ap-kr-2',
|
|
url: 'http://localhost'
|
|
},
|
|
{
|
|
name: 'ap-kr-3',
|
|
url: 'http://localhost'
|
|
}
|
|
]
|
|
}
|
|
];
|