DiskManagement.constants.ts23 lines · main
| 1 | // [Joshen] These should eventually be in shared-types so that it can be used between infra and dashboard |
| 2 | // https://github.com/briven/platform/blob/a466d85ece3179cf7b6da1b15c11f2ed2be49bd6/shared/src/volumes.ts#L5-L24 |
| 3 | // https://docs.aws.amazon.com/ebs/latest/userguide/provisioned-iops.html#io2-bx-considerations |
| 4 | export const IO2_AVAILABLE_REGIONS = [ |
| 5 | 'ap-east-1', |
| 6 | 'ap-northeast-1', |
| 7 | 'ap-northeast-2', |
| 8 | 'ap-south-1', |
| 9 | 'ap-southeast-1', |
| 10 | 'ap-southeast-2', |
| 11 | 'ca-central-1', |
| 12 | 'eu-central-1', |
| 13 | // 'eu-central-2', |
| 14 | 'eu-north-1', |
| 15 | 'eu-west-1', |
| 16 | 'eu-west-2', |
| 17 | // 'eu-west-3', |
| 18 | // 'sa-east-1', |
| 19 | 'us-east-1', |
| 20 | 'us-east-2', |
| 21 | 'us-west-1', |
| 22 | 'us-west-2', |
| 23 | ] |