-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
165 lines (161 loc) · 4.1 KB
/
serverless.yml
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
service: serverless-todo-api
frameworkVersion: '3'
custom:
usersTableName: 'users_${sls:stage}'
goalsTableName: 'goals_${sls:stage}'
workoutLogTableName: 'workout_logs_${sls:stage}'
provider:
name: aws
region: us-west-2
runtime: nodejs20.x
iam:
role:
statements:
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- Fn::GetAtt: [ UsersTable, Arn ]
- Fn::GetAtt: [ GoalsTable, Arn ]
- Fn::GetAtt: [ WorkoutLogTable, Arn ]
environment:
USERS_TABLE: ${self:custom.usersTableName}
GOALS_TABLE: ${self:custom.goalsTableName}
WORKOUT_LOGS_TABLE: ${self:custom.workoutLogTableName}
functions:
users:
handler: app/usersFunction.handler
events:
- httpApi:
path: /users
method: POST
- httpApi:
path: /users
method: GET
- httpApi:
path: /users/{id}
method: GET
- httpApi:
path: /users/{id}
method: PUT
- httpApi:
path: /users/{id}
method: DELETE
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- Fn::GetAtt: [ UsersTable, Arn ]
goals:
handler: app/goalsFunction.handler
events:
- httpApi:
path: /goals/{userId}
method: POST
- httpApi:
path: /goals
method: GET
- httpApi:
path: /goals/{goalId}
method: GET
- httpApi:
path: /goals/{goalId}
method: PUT
- httpApi:
path: /goals/{goalId}
method: DELETE
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- Fn::GetAtt: [ GoalsTable, Arn ]
workouts:
handler: app/workoutsFunction.handler
events:
- httpApi:
path: /workouts/{userId}
method: POST
- httpApi:
path: /workouts
method: GET
- httpApi:
path: /workouts/{workoutId}
method: GET
- httpApi:
path: /workouts/{workoutId}
method: PUT
- httpApi:
path: /workouts/{workoutId}
method: DELETE
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- Fn::GetAtt: [ WorkoutLogTable, Arn ]
docs:
handler: app/docsFunction.handler
events:
- httpApi:
path: /docs/{proxy+}
method: ANY
- httpApi:
path: /
method: GET
resources:
Resources:
UsersTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: userId
AttributeType: S
KeySchema:
- AttributeName: userId
KeyType: HASH
BillingMode: PAY_PER_REQUEST
TableName: ${self:custom.usersTableName}
GoalsTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: goalId
AttributeType: S
KeySchema:
- AttributeName: goalId
KeyType: HASH
BillingMode: PAY_PER_REQUEST
TableName: ${self:custom.goalsTableName}
WorkoutLogTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: workoutId
AttributeType: S
KeySchema:
- AttributeName: workoutId
KeyType: HASH
BillingMode: PAY_PER_REQUEST
TableName: ${self:custom.workoutLogTableName}