File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 13
13
# Makes sure any subprocesses will be terminated with this process
14
14
trap " pkill -P $$ ; exit 1;" INT
15
15
16
- NODE_VERSIONS_FOR_AWS_CLI=(" nodejs10.x" " nodejs12.x" )
16
+ NODE_VERSIONS_FOR_AWS_CLI=(" nodejs10.x" " nodejs12.x" " nodejs14.x " )
17
17
LAYER_PATHS=(" .layers/datadog_lambda_node10.15.zip" " .layers/datadog_lambda_node12.13.zip" " .layers/datadog_lambda_node14.15.zip" )
18
18
LAYER_NAMES=(" Datadog-Node10-x" " Datadog-Node12-x" " Datadog-Node14-x" )
19
19
AVAILABLE_REGIONS=$( aws ec2 describe-regions | jq -r ' .[] | .[] | .RegionName' )
85
85
for layer_name in " ${LAYER_NAMES[@]} " ; do
86
86
aws_version_key=" ${NODE_VERSIONS_FOR_AWS_CLI[$i]} "
87
87
layer_path=" ${LAYER_PATHS[$i]} "
88
-
89
88
publish_layer $region $layer_name $aws_version_key $layer_path &
90
89
PIDS+=($! )
91
90
if [ ${# PIDS[@]} -eq $BATCH_SIZE ]; then
You can’t perform that action at this time.
0 commit comments