forked from awslabs/aws-config-rdklib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
41 lines (37 loc) · 1.1 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
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.rst
Labels: ['stable']
HomePageUrl: https://github.com/awslabs/aws-config-rdklib
SemanticVersion: 0.2.2
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
CompatibleRuntimes:
- python3.6
- python3.7
- python3.8
- python3.9
LicenseInfo: 'Apache License, Version 2.0'
Outputs:
RdklibLayerArn:
Description: rdklib layer ARN
Value: !Ref RdklibLayer