mirror of
https://github.com/supabase/supabase.git
synced 2026-06-15 08:05:21 +08:00
## What kind of change does this PR introduce? This PR enables io2 block express in additional regions: `eu-central-2`, `eu-west-3`, and `sa-east-1` as it is [now available](https://aws.amazon.com/about-aws/whats-new/2025/07/amazon-ebs-io2-block-express/) in all the regions as of 22 July, 2025 Depends on platform PR: https://github.com/supabase/platform/pull/33440 ## What is the current behavior? Currently IO2 block express is not available for these regions: `eu-central-2`, `eu-west-3`, and `sa-east-1` ## What is the new behavior? You can use io2 block express in additional regions: `eu-central-2`, `eu-west-3`, and `sa-east-1` <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Improvements** * Disk management features are now available in three additional AWS regions: eu-central-2 (Central Europe), eu-west-3 (Western Europe), and sa-east-1 (South America). Users in these regions can now access storage management capabilities. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
24 lines
659 B
TypeScript
24 lines
659 B
TypeScript
// [Joshen] These should eventually be in shared-types so that it can be used between infra and dashboard
|
|
// https://github.com/supabase/platform/blob/a466d85ece3179cf7b6da1b15c11f2ed2be49bd6/shared/src/volumes.ts#L5-L24
|
|
// https://docs.aws.amazon.com/ebs/latest/userguide/provisioned-iops.html#io2-bx-considerations
|
|
export const IO2_AVAILABLE_REGIONS = [
|
|
'ap-east-1',
|
|
'ap-northeast-1',
|
|
'ap-northeast-2',
|
|
'ap-south-1',
|
|
'ap-southeast-1',
|
|
'ap-southeast-2',
|
|
'ca-central-1',
|
|
'eu-central-1',
|
|
'eu-central-2',
|
|
'eu-north-1',
|
|
'eu-west-1',
|
|
'eu-west-2',
|
|
'eu-west-3',
|
|
'sa-east-1',
|
|
'us-east-1',
|
|
'us-east-2',
|
|
'us-west-1',
|
|
'us-west-2',
|
|
]
|