-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yaml
More file actions
33 lines (33 loc) · 817 Bytes
/
template.yaml
File metadata and controls
33 lines (33 loc) · 817 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
31
32
33
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Resources:
CSV2JSON:
Type: AWS::Serverless::Function
Properties:
CodeUri: csv_2_json/
Handler: app.lambda_handler
Runtime: python3.9
Timeout: 60
Policies:
- AWSLambdaExecute
- AmazonS3FullAccess
JSON2Image:
Type: AWS::Serverless::Function
Properties:
CodeUri: json_2_image/
Handler: app.lambda_handler
Runtime: python3.9
Timeout: 60
Policies:
- AWSLambdaExecute
- AmazonS3FullAccess
ZIPEXTRACT:
Type: AWS::Serverless::Function
Properties:
CodeUri: zip_extract/
Handler: app.lambda_handler
Runtime: python3.9
Timeout: 60
Policies:
- AWSLambdaExecute
- AmazonS3FullAccess