-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yaml
More file actions
30 lines (27 loc) · 954 Bytes
/
template.yaml
File metadata and controls
30 lines (27 loc) · 954 Bytes
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
AWSTemplateFormatVersion: "2010-09-09"
Transform: "AWS::Serverless-2016-10-31"
Description: "Extract flame graph for Nodejs directly from lambda function"
Metadata:
AWS::ServerlessRepo::Application:
Name: lambda-flame
Description: Extract flame graph for Nodejs directly from lambda function
Author: Matteo Gioioso
SpdxLicenseId: MIT
LicenseUrl: LICENSE
ReadmeUrl: README.md
Labels: ['lambda', 'nodejs', 'debugging', 'profiling', 'diagnostic', 'serverless']
HomePageUrl: https://github.com/MatteoGioioso/lambda-flame
SourceCodeUrl: https://github.com/MatteoGioioso/lambda-flame
Resources:
LambdaFlame:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: lambda-flame
Description: Extract flame graph for Nodejs directly from lambda function
ContentUri: lib/.
LicenseInfo: MIT
CompatibleRuntimes:
- nodejs12.x
Outputs:
LayerArn:
Value: !Ref LambdaFlame