-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage-sam.yml
More file actions
18 lines (17 loc) · 603 Bytes
/
package-sam.yml
File metadata and controls
18 lines (17 loc) · 603 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
AWSTemplateFormatVersion : '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Resources:
NodeCanvasLayer:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: canvas-nodejs
Description: canvas@<CANVAS_VERSION>
ContentUri: s3://<S3_BUCKET_NAME>/canvas-nodejs_v<CANVAS_VERSION>.zip
CompatibleRuntimes:
- nodejs<NODEJS_RUNTIME_VERSION>
RetentionPolicy: Retain
LicenseInfo: MIT
Outputs:
LayerVersion:
Description: Layer ARN Reference
Value: !Ref NodeCanvasLayer