From f15853dd7e51fddada74b2c5aafa2a338e9235c8 Mon Sep 17 00:00:00 2001 From: Brian LeRoux Date: Thu, 19 Dec 2019 11:45:10 -0800 Subject: [PATCH] adds sam.yaml for publishing to SAR --- .github/sam.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/sam.yaml diff --git a/.github/sam.yaml b/.github/sam.yaml new file mode 100644 index 00000000..9073fe6b --- /dev/null +++ b/.github/sam.yaml @@ -0,0 +1,18 @@ +AWSTemplateFormatVersion: '2010-09-09' +Transform: AWS::Serverless-2016-10-31 +Description: > + deno-runtime + + Example custom runtime for Deno + +Resources: + DenoRuntime: + Type: AWS::Lambda::LayerVersion + Properties: + Content: + S3Bucket: begin-public-east-1 + S3Key: deno-runtime.zip + +Outputs: + DenoRuntimeArn: + Value: !Ref DenoRuntime