AWS-Lambda

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

author/pod-stripper/cpanfile
author/pod-stripper/scripts/pod_stripper.pl
author/publish-perl-runtime-archives.pl
author/publish-perl-runtimes.pl
author/regions-arm64.txt
author/regions-x86_64.txt
author/update-aws-lambda-al.pl
author/update-aws-lambda-al2.pl
author/update-aws-lambda-al2023.pl
author/update-dependencies.sh
author/validate-account.sh
author/validate-template.sh
cpanfile
examples/cgi/Makefile
examples/cgi/README.md
examples/cgi/WwwCounter/0.gif
examples/cgi/WwwCounter/1.gif
examples/cgi/WwwCounter/2.gif
examples/cgi/WwwCounter/3.gif
examples/cgi/WwwCounter/4.gif
examples/cgi/WwwCounter/5.gif
examples/cgi/WwwCounter/6.gif

author/deploy-s3-stack.sh  view on Meta::CPAN

#!/usr/bin/env bash

ROOT=$(cd "$(dirname "$0")" && pwd)

set -xue

"$ROOT/validate-account.sh" || exit 2

while read -r REGION; do
aws --region "$REGION" cloudformation deploy \
    --stack-name "lambda-perl5-runtime-s3" \
    --template-file "${ROOT}/cfn-s3.yml" || true
done < "$ROOT/regions-x86_64.txt"

author/validate-template.sh  view on Meta::CPAN

#!/bin/bash

ROOT=$(cd "$(dirname "$0")" && pwd)
EXITCODE=0

set -xu
for TEMPLATE in "$ROOT"/*.yml; do
    aws cloudformation validate-template --region ap-northeast-1 --template-body "file://${TEMPLATE}" || EXITCODE=1
done

exit "$EXITCODE"



( run in 0.379 second using v1.01-cache-2.11-cpan-4d50c553e7e )