-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
437 lines (421 loc) · 11.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
service: serverless-typescript
plugins:
- serverless-webpack
- serverless-offline
- serverless-dotenv-plugin
- serverless-deployment-bucket
package:
individually: true
custom:
name: serverless-api
stage: ${opt:stage, 'offline'}
region: ${opt:region, 'ap-southeast-1'}
runtime: nodejs16.x
serverless-offline:
httpPort: 3000
noPrependStageInUrl: true
webpack:
webpackConfig: ./webpack.config.js
packager: 'yarn'
includeModules:
packagePath: ./package.json
forceExclude:
- aws-sdk
pseudoParameters:
allowReferences: true
skipRegionReplace: true
useDotenv: true
provider:
name: aws
runtime: nodejs16.x
architecture: arm64
endpointType: regional
stage: ${opt:stage, 'offline'}
region: ${opt:region, 'ap-southeast-1'}
stackTags:
stack: ${opt:stage, 'offline'}
versionFunctions: false
vpc:
securityGroupIds:
- ${env:SECURITY_GROUP_ID}
subnetIds:
- ${env:SUBNET_ID_1}
- ${env:SUBNET_ID_2}
- ${env:SUBNET_ID_3}
memorySize: 1024
apiGateway:
apiKeys:
- name: serverless-typescript-api-key-${self:provider.stage}
description: 'serverless-typescript-api-key'
usagePlan:
throttle:
burstLimit: 200
rateLimit: 100
environment:
LOG_LEVEL: INFO
STAGE: ${opt:stage, 'offline'}
NODE_ENV: ${opt:stage, 'offline'}
DB_HOST: ${env:DB_HOST}
DB_PORT: ${env:DB_PORT}
DB_USER: ${env:DB_USER}
DB_PASSWORD: ${env:DB_PASSWORD}
DB_NAME: ${env:DB_NAME}
SHOW_DATA_SOURCE_LOG: true
AWS_ACCOUNT_ID: ${env:AWS_ACCOUNT_ID}
PASSPORT_TOPIC: arn:aws:sns:${aws:region}:${aws:accountId}:passport-sns-${self:provider.stage}
deploymentBucket:
name: serverless-typescript-${self:provider.stage}
iam:
role:
statements:
- Effect: 'Allow'
Action:
- 's3:ListBucket'
- 's3:GetObject'
- 's3:PutObject'
- 's3:DeleteObject'
- 's3:CreateBucket'
Resource: '*'
- Effect: 'Allow'
Action:
- 'sqs:DeleteMessage'
- 'sqs:ReceiveMessage'
- 'sqs:SendMessage'
- 'sqs:GetQueueAttributes'
Resource:
- arn:aws:sqs:${aws:region}:${aws:accountId}:passport-sqs-${self:provider.stage}
- Effect: 'Allow'
Action:
- 'sns:ConfirmSubscription'
- 'sns:GetSubscriptionAttributes'
- 'sns:GetTopicAttributes'
- 'sns:Subscribe'
- 'sns:Unsubscribe'
- 'sns:Publish'
Resource:
- arn:aws:sns:${aws:region}:${aws:accountId}:passport-sns-${self:provider.stage}
timeout: 15
logRetentionInDays: 90
logs:
httpApi: true
httpApi:
cors: true
functions:
createTodo:
handler: src/todo/index.createTodo
events:
- http:
path: /todos
method: post
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
getTodos:
handler: src/todo/index.getTodos
events:
- http:
path: /todos
method: get
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
getTodo:
handler: src/todo/index.getTodo
events:
- http:
path: /todos/{todoId}
method: get
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
updateTodo:
handler: src/todo/index.updateTodo
events:
- http:
path: /todos/{todoId}
method: put
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
deleteTodo:
handler: src/todo/index.deleteTodo
events:
- http:
path: /todos/{todoId}
method: delete
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
getHealth:
handler: src/todo/index.getHealth
events:
- http:
path: /health
method: get
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
getHello:
handler: src/todo/index.getHello
events:
- http:
path: /hello
method: get
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
getTestAsync:
handler: src/todo/index.getTestAsync
events:
- http:
path: /testAsync
method: get
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
passportWorker:
handler: src/passport/index.passportWorker
description: 'Lambda worker to listen SQS messages before start doing works'
timeout: 30
events:
- sqs:
arn: arn:aws:sqs:${aws:region}:${aws:accountId}:passport-sqs-${self:provider.stage}
batchSize: 1
maximumBatchingWindow: 100
dispatchPassport:
handler: src/passport/index.dispatchPassport
timeout: 25
events:
- http:
path: /dispatchPassport
method: post
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
dispatchTopic:
handler: src/passport/index.dispatchTopic
timeout: 25
events:
- http:
path: /dispatchTopic
method: post
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
createPassport:
handler: src/passport/index.createPassport
events:
- http:
path: /passports
method: post
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
getPassports:
handler: src/passport/index.getPassports
events:
- http:
path: /passports
method: get
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
getPassport:
handler: src/passport/index.getPassport
events:
- http:
path: /passports/{passportId}
method: get
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
updatePassport:
handler: src/passport/index.updatePassport
events:
- http:
path: /passports/{passportId}
method: put
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
deletePassport:
handler: src/passport/index.deletePassport
events:
- http:
path: /passports/{passportId}
method: delete
private: true
cors:
origin: '*'
headers:
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
- X-Amz-User-Agent
allowCredentials: true
resources:
Resources:
PassportSQS:
Type: AWS::SQS::Queue
Properties:
QueueName: 'passport-sqs-${self:provider.stage}'
DelaySeconds: 0
MessageRetentionPeriod: 345600
VisibilityTimeout: 100
RedrivePolicy:
deadLetterTargetArn:
Fn::GetAtt:
- 'PassportDLQ'
- 'Arn'
maxReceiveCount: 5
PassportDLQ:
Type: AWS::SQS::Queue
Properties:
QueueName: 'passport-dlq-${self:provider.stage}'
DelaySeconds: 60
MaximumMessageSize: 2048
MessageRetentionPeriod: 345600
VisibilityTimeout: 100
PassportSNS:
Type: AWS::SNS::Topic
Properties:
Subscription:
- Endpoint:
Fn::GetAtt:
- 'PassportSQS'
- 'Arn'
Protocol: 'sqs'
TopicName: 'passport-sns-${self:provider.stage}'
PassportQueuePolicy:
Type: AWS::SQS::QueuePolicy
Properties:
Queues:
- Ref: PassportSQS
PolicyDocument:
Id: Allow-SNS-SendMessage
Version: '2012-10-17'
Statement:
- Sid: Allow-SendMessage-pgw-${self:provider.stage}-passport-sqs
Effect: Allow
Principal: '*'
Action:
- SQS:SendMessage
Resource:
Fn::GetAtt: [PassportSQS, Arn]
Condition:
ArnEquals:
aws:SourceArn: arn:aws:sns:${aws:region}:${aws:accountId}:pgw-${self:provider.stage}-passport-sns