-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpublish_layer.sh
executable file
·51 lines (41 loc) · 2.18 KB
/
publish_layer.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash -e
# Default region for testing etc.
REGIONS=(us-east-1)
# Default compatible architecture
COMPATIBLE_ARCHITECTURES="x86_64"
# Compatible runtimes
COMPATIBLE_RUNTIMES="nodejs14.x nodejs16.x nodejs18.x"
# Get parameters
LAYER_NAME=""
ARCHITECTURE="$1"
# Set description
DESCRIPTION="Run DuckDB Node.js in AWS Lambda (https://github.com/tobilg/duckdb-nodejs-layer) for ${ARCHITECTURE}"
# Set regions when x86_64
if [[ $ARCHITECTURE == "x86_64" ]]; then
# List sourced from SSM
REGIONS=$(aws ssm get-parameters-by-path --region us-east-1 \
--path /aws/service/global-infrastructure/regions \
--query 'Parameters[].Value | sort(@)' --output text)
# Set layer name
LAYER_NAME="duckdb-nodejs-x86"
fi
# Set regions when arm64
if [[ $ARCHITECTURE == "arm64" ]]; then
# List sourced from https://aws.amazon.com/lambda/pricing/
REGIONS=("us-east-1" "us-east-2" "us-west-1" "us-west-2" "af-south-1" "ap-east-1" "ap-southeast-3" "ap-south-1" "ap-northeast-3" "ap-northeast-2" "ap-southeast-1" "ap-southeast-2" "ap-northeast-1" "ca-central-1" "eu-central-1" "eu-west-1" "eu-west-2" "eu-south-1" "eu-west-3" "eu-north-1" "me-south-1" "sa-east-1")
# Set compatible architecture to arm64
COMPATIBLE_ARCHITECTURES="arm64"
# Set layer name
LAYER_NAME="duckdb-nodejs-arm64"
fi
for region in ${REGIONS[@]}; do
# Exclude gov and cn regions
if [[ ${region} != *"gov"* && ${region} != *"cn"* && ${region} != "il-central-1" && ${region} != "ca-west-1" ]];then
echo "Publishing $ARCHITECTURE layer to $region..."
LAYER_ARN=$(aws lambda publish-layer-version --region $region --layer-name $LAYER_NAME --description "$DESCRIPTION" --compatible-runtimes $COMPATIBLE_RUNTIMES --compatible-architectures $COMPATIBLE_ARCHITECTURES --license MIT --zip-file fileb://duckdb-layer-$ARCHITECTURE.zip | jq -r .LayerVersionArn)
LAYER_VERSION=$(aws lambda get-layer-version-by-arn --region $region --arn "$LAYER_ARN" | jq -r .Version)
POLICY=$(aws lambda add-layer-version-permission --region $region --layer-name $LAYER_NAME --version-number $LAYER_VERSION --statement-id $LAYER_NAME-public --action lambda:GetLayerVersion --principal \*)
echo $LAYER_ARN
echo "...complete!"
fi
done