From 15ba7ba1a61a8734886d75dcf35deaceec0f9768 Mon Sep 17 00:00:00 2001 From: Michal Piechowiak Date: Mon, 10 Feb 2025 11:27:31 +0100 Subject: [PATCH] fix: add missing eu-central-1, ap-southeast-1 and ap-southeast-2 regions --- src/region.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/region.ts b/src/region.ts index 08f714e..14a7bcb 100644 --- a/src/region.ts +++ b/src/region.ts @@ -3,6 +3,9 @@ export const REGION_AUTO = 'auto' const regions = { 'us-east-1': true, 'us-east-2': true, + 'eu-central-1': true, + 'ap-southeast-1': true, + 'ap-southeast-2': true, } export type Region = keyof typeof regions