From 5c18964cc818eaf26ea08a8182f4cb434da9a880 Mon Sep 17 00:00:00 2001 From: dogisgreat Date: Mon, 10 Nov 2025 21:40:04 -0500 Subject: [PATCH 1/2] chore: add aws region ca-west-1 --- .github/workflows/publish-layer-collector.yml | 1 + .github/workflows/release-layer-collector.yml | 1 + .github/workflows/release-layer-java.yml | 2 ++ .github/workflows/release-layer-nodejs.yml | 1 + .github/workflows/release-layer-python.yml | 1 + .github/workflows/release-layer-ruby.yml | 1 + 6 files changed, 7 insertions(+) diff --git a/.github/workflows/publish-layer-collector.yml b/.github/workflows/publish-layer-collector.yml index 2622394b56..c0c79055a6 100644 --- a/.github/workflows/publish-layer-collector.yml +++ b/.github/workflows/publish-layer-collector.yml @@ -24,6 +24,7 @@ on: - ap-southeast-1 - ap-southeast-2 - ca-central-1 + - ca-west-1 - eu-central-1 - eu-north-1 - eu-west-1 diff --git a/.github/workflows/release-layer-collector.yml b/.github/workflows/release-layer-collector.yml index 3075fb0848..2e245cedf1 100644 --- a/.github/workflows/release-layer-collector.yml +++ b/.github/workflows/release-layer-collector.yml @@ -75,6 +75,7 @@ jobs: - ap-southeast-1 - ap-southeast-2 - ca-central-1 + - ca-west-1 - eu-central-1 - eu-north-1 - eu-west-1 diff --git a/.github/workflows/release-layer-java.yml b/.github/workflows/release-layer-java.yml index ec6efc4737..8baaca0626 100644 --- a/.github/workflows/release-layer-java.yml +++ b/.github/workflows/release-layer-java.yml @@ -93,6 +93,7 @@ jobs: - ap-southeast-1 - ap-southeast-2 - ca-central-1 + - ca-west-1 - eu-central-1 - eu-north-1 - eu-west-1 @@ -130,6 +131,7 @@ jobs: - ap-southeast-1 - ap-southeast-2 - ca-central-1 + - ca-west-1 - eu-central-1 - eu-north-1 - eu-west-1 diff --git a/.github/workflows/release-layer-nodejs.yml b/.github/workflows/release-layer-nodejs.yml index 9b20603cf3..35ea2cd860 100644 --- a/.github/workflows/release-layer-nodejs.yml +++ b/.github/workflows/release-layer-nodejs.yml @@ -78,6 +78,7 @@ jobs: - ap-southeast-1 - ap-southeast-2 - ca-central-1 + - ca-west-1 - eu-central-1 - eu-north-1 - eu-west-1 diff --git a/.github/workflows/release-layer-python.yml b/.github/workflows/release-layer-python.yml index 6ba7ccf6a6..34f2caa703 100644 --- a/.github/workflows/release-layer-python.yml +++ b/.github/workflows/release-layer-python.yml @@ -85,6 +85,7 @@ jobs: - ap-southeast-1 - ap-southeast-2 - ca-central-1 + - ca-west-1 - eu-central-1 - eu-north-1 - eu-west-1 diff --git a/.github/workflows/release-layer-ruby.yml b/.github/workflows/release-layer-ruby.yml index 171d909fff..c90df53e0b 100644 --- a/.github/workflows/release-layer-ruby.yml +++ b/.github/workflows/release-layer-ruby.yml @@ -77,6 +77,7 @@ jobs: - ap-southeast-1 - ap-southeast-2 - ca-central-1 + - ca-west-1 - eu-central-1 - eu-north-1 - eu-west-1 From 948112108552fda7d0ec565f34bb72f829b3bdba Mon Sep 17 00:00:00 2001 From: warre Date: Sat, 13 Dec 2025 11:32:22 +0100 Subject: [PATCH 2/2] chore: add ca-west-1 to list of 'all' regions where the lambda layer is published by default --- .github/workflows/publish-layer-collector.yml | 2 +- collector/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-layer-collector.yml b/.github/workflows/publish-layer-collector.yml index c0c79055a6..69cc71eed8 100644 --- a/.github/workflows/publish-layer-collector.yml +++ b/.github/workflows/publish-layer-collector.yml @@ -112,7 +112,7 @@ jobs: fi aws_regions='' if [ ${{ github.event.inputs.aws-region }} == 'all' ]; then - aws_regions='["ap-northeast-1", "ap-northeast-2", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ca-central-1", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "sa-east-1", "us-east-1", "us-east-2", "us-west-1", "us-west-2"]' + aws_regions='["ap-northeast-1", "ap-northeast-2", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ca-central-1", "ca-west-1", "eu-central-1", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "sa-east-1", "us-east-1", "us-east-2", "us-west-1", "us-west-2"]' else aws_regions='["${{ github.event.inputs.aws-region }}"]' fi diff --git a/collector/README.md b/collector/README.md index 20537d9c17..79378e6f41 100644 --- a/collector/README.md +++ b/collector/README.md @@ -71,7 +71,7 @@ After that, you can run the `Publish Collector Lambda Layer` workflow to build t Available options are `all`, `amd64` and `arm64`. The default value is `all` which builds and publishes layer for both of the `amd64` and `arm64` architectures. - Specify the AWS region(s) where the collector Lambda layer will be published to via the `AWS Region(s) where layer will be published` input. - Available options are `all`, `ap-northeast-1`, `ap-northeast-2`, `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`. + Available options are `all`, `ap-northeast-1`, `ap-northeast-2`, `ap-south-1`, `ap-southeast-1`, `ap-southeast-2`, `ca-central-1`, `ca-west-1`, `eu-central-1`, `eu-north-1`, `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`, `us-east-2`, `us-west-1`, `us-west-2`. The default value is `all` which publishes layer to all the defined AWS regions mentioned above. - Specify the AWS IAM Role ARN to be assumed for publishing layer via the `AWS IAM Role ARN to be assumed for publishing layer` input. This is the ARN of the AWS IAM Role you have taken from the `RoleARN` output variable of the created AWS CloudFormation stack above.