From e80f61adc5f5d74d0c744c96b452ad20d21be35c Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 14 Jul 2026 13:58:27 +0000 Subject: [PATCH 1/2] Publish the Lambda layer to the Israel region (il-central-1) Add il-central-1 to the dev and prod deploy region matrices so the extension layers are published to the AWS Israel region. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01EhV3fTSMZnwUBpCQeQkMUd --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 933ddf2..8a26fb9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: needs: build strategy: matrix: - region: [us-east-1, us-east-2, us-west-1, us-west-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, eu-north-1, sa-east-1] + region: [us-east-1, us-east-2, us-west-1, us-west-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, eu-north-1, il-central-1, sa-east-1] uses: ./.github/workflows/publish.yml with: environment: dev-integration @@ -30,7 +30,7 @@ jobs: needs: build strategy: matrix: - region: [us-east-1, us-east-2, us-west-1, us-west-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, eu-north-1, sa-east-1] + region: [us-east-1, us-east-2, us-west-1, us-west-2, ap-south-1, ap-northeast-1, ap-northeast-2, ap-northeast-3, ap-southeast-1, ap-southeast-2, ca-central-1, eu-central-1, eu-west-1, eu-west-2, eu-west-3, eu-north-1, il-central-1, sa-east-1] uses: ./.github/workflows/publish.yml with: environment: prod-integration From ff2bf91806686e07b877aa96ac1b343ed7a6f877 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 14 Jul 2026 14:00:57 +0000 Subject: [PATCH 2/2] Document supported regions in the README Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01EhV3fTSMZnwUBpCQeQkMUd --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 56b5476..a4fbea1 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ An extension for capturing observability data from AWS Lambda invocations and sh ## Table of Contents - [Layer ARNs](#layer-arns) +- [Supported Regions](#supported-regions) - [Configuration](#configuration) - [Required](#required) - [Optional](#optional) @@ -30,6 +31,32 @@ This extension has five main functionalities: See the release page for the latest ARNs of the extension layers for each runtime. +## Supported Regions + +The extension layers are published to the following AWS regions: + +| Region | Location | +|---|---| +| `us-east-1` | US East (N. Virginia) | +| `us-east-2` | US East (Ohio) | +| `us-west-1` | US West (N. California) | +| `us-west-2` | US West (Oregon) | +| `ap-south-1` | Asia Pacific (Mumbai) | +| `ap-northeast-1` | Asia Pacific (Tokyo) | +| `ap-northeast-2` | Asia Pacific (Seoul) | +| `ap-northeast-3` | Asia Pacific (Osaka) | +| `ap-southeast-1` | Asia Pacific (Singapore) | +| `ap-southeast-2` | Asia Pacific (Sydney) | +| `ca-central-1` | Canada (Central) | +| `eu-central-1` | Europe (Frankfurt) | +| `eu-west-1` | Europe (Ireland) | +| `eu-west-2` | Europe (London) | +| `eu-west-3` | Europe (Paris) | +| `eu-north-1` | Europe (Stockholm) | +| `il-central-1` | Israel (Tel Aviv) | +| `sa-east-1` | South America (São Paulo) | + + ## Configuration ### Required