From 7adf75accad960f0d2f13a71ee26b0223905255b Mon Sep 17 00:00:00 2001 From: Stephen Demjanenko Date: Fri, 30 Jun 2023 21:13:06 -0700 Subject: [PATCH 1/2] Add ap-east-1 to Lambda Signer supported regions The AWS docs indicate this region supports code signing: https://docs.aws.amazon.com/general/latest/gr/signer.html#signer_lambda_region --- internal/service/lambda/function.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/service/lambda/function.go b/internal/service/lambda/function.go index ed7135a2f804..3e289c1b7580 100644 --- a/internal/service/lambda/function.go +++ b/internal/service/lambda/function.go @@ -1286,6 +1286,7 @@ func SignerServiceIsAvailable(region string) bool { endpoints.UsWest1RegionID: {}, endpoints.UsWest2RegionID: {}, endpoints.AfSouth1RegionID: {}, + endpoints.ApEast1RegionID: {}, endpoints.ApSouth1RegionID: {}, endpoints.ApNortheast2RegionID: {}, endpoints.ApSoutheast1RegionID: {}, From 137ed1dc12c35bd82690344e03bd3c5929893602 Mon Sep 17 00:00:00 2001 From: Kit Ewbank Date: Mon, 3 Jul 2023 10:22:12 -0400 Subject: [PATCH 2/2] Add CHANGELOG entry. --- .changelog/32327.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .changelog/32327.txt diff --git a/.changelog/32327.txt b/.changelog/32327.txt new file mode 100644 index 000000000000..a25d270e9786 --- /dev/null +++ b/.changelog/32327.txt @@ -0,0 +1,3 @@ +```release-note:enhancement +resource/aws_lambda_function: Support `code_signing_config_arn` in the `ap-east-1` AWS Region +``` \ No newline at end of file