From 84c0879bbab3718ba10a2eae6c7b61a7cd12f244 Mon Sep 17 00:00:00 2001 From: Kenneth Wong Date: Thu, 16 Oct 2025 02:43:48 +0800 Subject: [PATCH] feat(aws): add ap-southeast-5 region support --- lib/plugins/aws/provider.js | 1 + test/.gitignore | 2 +- types/index.d.ts | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/plugins/aws/provider.js b/lib/plugins/aws/provider.js index e182e28bef..b8c3e298ca 100644 --- a/lib/plugins/aws/provider.js +++ b/lib/plugins/aws/provider.js @@ -1251,6 +1251,7 @@ class AwsProvider { 'ap-southeast-2', 'ap-southeast-3', 'ap-southeast-4', + 'ap-southeast-5', 'ca-central-1', 'cn-north-1', 'cn-northwest-1', diff --git a/test/.gitignore b/test/.gitignore index eb3cbbfc0e..b19fe71def 100644 --- a/test/.gitignore +++ b/test/.gitignore @@ -1 +1 @@ -.serverless/ +.serverless/ diff --git a/types/index.d.ts b/types/index.d.ts index 4bd708b465..dabcd16b60 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1041,6 +1041,7 @@ export interface AWS { | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" + | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1"