-
Notifications
You must be signed in to change notification settings - Fork 26
/
template.yaml
43 lines (39 loc) · 1.21 KB
/
template.yaml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Metadata:
AWS::ServerlessRepo::Application:
Name: rdklib
Description: rdklib library for authoring Config Rules
Author: awslabs
SpdxLicenseId: Apache-2.0
LicenseUrl: LICENSE
ReadmeUrl: README.md
Labels: ["stable"]
HomePageUrl: https://github.com/awslabs/aws-config-rdklib
SemanticVersion: 0.3.6
SourceCodeUrl: https://github.com/awslabs/aws-config-rdklib
Description: >
rdklib library for authoring Config Rules
# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Function:
Timeout: 3
Resources:
RdklibLayer:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: rdklib-layer
Description: rdklib library for authoring Config Rules
ContentUri: ./build # Build directory will be populated during CFT deploy workflow
CompatibleRuntimes:
- python3.7
- python3.8
- python3.9
- python3.10
- python3.11
- python3.12
LicenseInfo: "Apache License, Version 2.0"
Outputs:
RdklibLayerArn:
Description: rdklib layer ARN
Value: !Ref RdklibLayer