-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
81 lines (76 loc) · 1.99 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
SAM with DynamoDB
# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Function:
Timeout: 3
MemorySize: 128
Api:
Cors:
AllowMethods: "'GET,POST,OPTIONS'"
AllowHeaders: "'*'"
AllowOrigin: "'*'"
AllowCredentials: "'*'"
Resources:
Login:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: src/
Handler: app.login
Runtime: nodejs14.x
Architectures:
- x86_64
Events:
Login:
Type: Api
Properties:
Path: /login
Method: post
Environment:
Variables:
SECRET: !Ref SECRET
User:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: src/
Handler: app.user
Runtime: nodejs14.x
Architectures:
- x86_64
Events:
createUser:
Type: Api
Properties:
Path: /user
Method: post
getUser:
Type: Api
Properties:
Path: /user/{id}
Method: get
updateUser:
Type: Api
Properties:
Path: /user/{id}
Method: put
deleteUser:
Type: Api
Properties:
Path: /user/{id}
Method: delete
Client:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/
Handler: app.client
Runtime: nodejs14.x
Architectures:
- x86_64
Events:
createClient:
Type: Api
Properties:
Path: /client
Method: post