-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathserverless.yml
422 lines (383 loc) · 13.5 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
service: twitter
frameworkVersion: "3"
useDotenv: true
params:
dev:
appSyncCaching: false
appSyncLogLevel: ALL
appSyncLogExcludeVerboseContent: false
prod:
appSyncCaching:
behavior: PER_RESOLVER_CACHING
ttl: 3600
type: LARGE
appSyncLogLevel: ERROR
appSyncLogExcludeVerboseContent: true
plugins:
- serverless-appsync-plugin
- serverless-iam-roles-per-function
- serverless-export-env
- serverless-layers
- serverless-plugin-log-retention
- serverless-plugin-ifelse
provider:
name: aws
runtime: nodejs16.x
region: eu-west-1
environment:
STAGE: ${sls:stage}
AWS_NODEJS_CONNECTION_REUSE_ENABLED: "1"
package:
exclude:
- package-lock.json
- package.json
custom:
region: ${opt:region, self:provider.region}
export-env:
overwrite: true
appSync:
- ${file(serverless.appsync-api.yml)}
serverless-layers:
layersDeploymentBucket: ${ssm:/twitterappsync/${sls:stage}/layer-deployment-bucket}
logRetentionInDays: 1
appSyncCaching: ${param:appSyncCaching}
appSyncLogLevel: ${param:appSyncLogLevel}
appSyncLogExcludeVerboseContent: ${param:appSyncLogExcludeVerboseContent}
serverlessIfElse:
- If: '"${sls:stage}" == "prod"' # don't do anything
ElseExclude:
- functions.setResolverLogLevelToAll
- functions.setResolverLogLevelToError
functions:
confirmUserSignup:
handler: functions/confirm-user-signup.handler
environment:
USERS_TABLE: !Ref UsersTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:PutItem
Resource: !GetAtt UsersTable.Arn
getImageUploadUrl:
handler: functions/get-upload-url.handler
environment:
BUCKET_NAME: !Ref AssetsBucket
iamRoleStatements:
- Effect: Allow
Action:
- s3:PutObject
- s3:PutObjectAcl
Resource: !Sub ${AssetsBucket.Arn}/*
tweet:
handler: functions/tweet.handler
environment:
USERS_TABLE: !Ref UsersTable
TWEETS_TABLE: !Ref TweetsTable
TIMELINES_TABLE: !Ref TimelinesTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:UpdateItem
Resource: !GetAtt UsersTable.Arn
- Effect: Allow
Action: dynamodb:PutItem
Resource:
- !GetAtt TweetsTable.Arn
- !GetAtt TimelinesTable.Arn
retweet:
handler: functions/retweet.handler
environment:
USERS_TABLE: !Ref UsersTable
TWEETS_TABLE: !Ref TweetsTable
TIMELINES_TABLE: !Ref TimelinesTable
RETWEETS_TABLE: !Ref RetweetsTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:GetItem
Resource: !GetAtt TweetsTable.Arn
- Effect: Allow
Action: dynamodb:UpdateItem
Resource:
- !GetAtt TweetsTable.Arn
- !GetAtt UsersTable.Arn
- Effect: Allow
Action: dynamodb:PutItem
Resource:
- !GetAtt TweetsTable.Arn
- !GetAtt TimelinesTable.Arn
- !GetAtt RetweetsTable.Arn
unretweet:
handler: functions/unretweet.handler
environment:
USERS_TABLE: !Ref UsersTable
TWEETS_TABLE: !Ref TweetsTable
TIMELINES_TABLE: !Ref TimelinesTable
RETWEETS_TABLE: !Ref RetweetsTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:GetItem
Resource: !GetAtt TweetsTable.Arn
- Effect: Allow
Action: dynamodb:Query
Resource: !Sub "${TweetsTable.Arn}/index/retweetsByCreator"
- Effect: Allow
Action: dynamodb:UpdateItem
Resource:
- !GetAtt TweetsTable.Arn
- !GetAtt UsersTable.Arn
- Effect: Allow
Action: dynamodb:DeleteItem
Resource:
- !GetAtt TweetsTable.Arn
- !GetAtt TimelinesTable.Arn
- !GetAtt RetweetsTable.Arn
reply:
handler: functions/reply.handler
environment:
USERS_TABLE: !Ref UsersTable
TWEETS_TABLE: !Ref TweetsTable
TIMELINES_TABLE: !Ref TimelinesTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:GetItem
Resource: !GetAtt TweetsTable.Arn
- Effect: Allow
Action: dynamodb:UpdateItem
Resource:
- !GetAtt TweetsTable.Arn
- !GetAtt UsersTable.Arn
- Effect: Allow
Action: dynamodb:PutItem
Resource:
- !GetAtt TweetsTable.Arn
- !GetAtt TimelinesTable.Arn
distributeTweets:
handler: functions/distribute-tweets.handler
environment:
RELATIONSHIPS_TABLE: !Ref RelationshipsTable
TIMELINES_TABLE: !Ref TimelinesTable
events:
- stream:
type: dynamodb
arn: !GetAtt TweetsTable.StreamArn
iamRoleStatements:
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:DeleteItem
- dynamodb:BatchWriteItem
Resource: !GetAtt TimelinesTable.Arn
- Effect: Allow
Action: dynamodb:Query
Resource: !Sub "${RelationshipsTable.Arn}/index/byOtherUser"
distributeTweetsToFollower:
handler: functions/distribute-tweets-to-follower.handler
environment:
TWEETS_TABLE: !Ref TweetsTable
TIMELINES_TABLE: !Ref TimelinesTable
MAX_TWEETS: "100"
events:
- stream:
type: dynamodb
arn: !GetAtt RelationshipsTable.StreamArn
# Only required if the auto generated name exceeds 64 characters
iamRoleStatementsName: ${self:service}-${sls:stage}-distributeTweetsToFollower
iamRoleStatements:
- Effect: Allow
Action: dynamodb:Query
Resource:
- !Sub "${TweetsTable.Arn}/index/byCreator"
- !Sub "${TimelinesTable.Arn}/index/byDistributedFrom"
- Effect: Allow
Action:
- dynamodb:BatchWriteItem
- dynamodb:PutItem
- dynamodb:DeleteItem
Resource: !GetAtt TimelinesTable.Arn
syncUsersToAlgolia:
handler: functions/sync-users-to-algolia.handler
events:
- stream:
type: dynamodb
arn: !GetAtt UsersTable.StreamArn
iamRoleStatements:
- Effect: Allow
Action: ssm:GetParameters
Resource:
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-app-id
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-admin-key
syncTweetsToAlgolia:
handler: functions/sync-tweets-to-algolia.handler
events:
- stream:
type: dynamodb
arn: !GetAtt TweetsTable.StreamArn
iamRoleStatements:
- Effect: Allow
Action: ssm:GetParameters
Resource:
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-app-id
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-admin-key
search:
handler: functions/search.handler
iamRoleStatements:
- Effect: Allow
Action: ssm:GetParameters
Resource:
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-app-id
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-admin-key
getHashTag:
handler: functions/getHashTag.handler
iamRoleStatements:
- Effect: Allow
Action: ssm:GetParameters
Resource:
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-app-id
- !Sub arn:aws:ssm:${AWS::Region}:${AWS::AccountId}:parameter/${sls:stage}/algolia-admin-key
notify:
handler: functions/notify.handler
environment:
GRAPHQL_API_URL: !GetAtt TwitterGraphQlApi.GraphQLUrl
TWEETS_TABLE: !Ref TweetsTable
USERS_TABLE: !Ref UsersTable
events:
- stream:
type: dynamodb
arn: !GetAtt TweetsTable.StreamArn
iamRoleStatements:
- Effect: Allow
Action: appsync:GraphQL
Resource: !Sub ${TwitterGraphQlApi.Arn}/* # Got from the template-update-stack on .serverless folder
- Effect: Allow
Action: dynamodb:GetItem
Resource: !GetAtt TweetsTable.Arn
- Effect: Allow
Action: dynamodb:Query
Resource: !Sub ${UsersTable.Arn}/index/byScreenName
notifyLiked:
handler: functions/notify-liked.handler
environment:
GRAPHQL_API_URL: !GetAtt TwitterGraphQlApi.GraphQLUrl
TWEETS_TABLE: !Ref TweetsTable
events:
- stream:
type: dynamodb
arn: !GetAtt LikesTable.StreamArn
iamRoleStatements:
- Effect: Allow
Action: appsync:GraphQL
Resource: !Sub ${TwitterGraphQlApi.Arn}/* # Got from the template-update-stack on .serverless folder
- Effect: Allow
Action: dynamodb:GetItem
Resource: !GetAtt TweetsTable.Arn
notifyDmed:
handler: functions/notify-dmed.handler
environment:
GRAPHQL_API_URL: !GetAtt TwitterGraphQlApi.GraphQLUrl
events:
- stream:
type: dynamodb
arn: !GetAtt DirectMessagesTable.StreamArn
iamRoleStatements:
- Effect: Allow
Action: appsync:GraphQL
Resource: !Sub ${TwitterGraphQlApi.Arn}/* # Got from the template-update-stack on .serverless folder
sendDirectMessage:
handler: functions/send-direct-message.handler
environment:
CONVERSATIONS_TABLE: !Ref ConversationsTable
DIRECT_MESSAGES_TABLE: !Ref DirectMessagesTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:PutItem
Resource: !GetAtt DirectMessagesTable.Arn
- Effect: Allow
Action: dynamodb:UpdateItem
Resource: !GetAtt ConversationsTable.Arn
getTweetCreator:
handler: functions/get-tweet-creator.handler
environment:
USERS_TABLE: !Ref UsersTable
iamRoleStatements:
- Effect: Allow
Action: dynamodb:BatchGetItem
Resource: !GetAtt UsersTable.Arn
firehoseTransformer:
handler: functions/firehose-transformer.handler
timeout: 61
setResolverLogLevelToAll:
handler: functions/set-resolver-log-level.handler
events:
- schedule: cron(6 * * * ? *) # 6 mins past the hour every hour
environment:
APPSYNC_API_ID: !GetAtt TwitterGraphQlApi.ApiId
FIELD_LOG_LEVEL: ALL
iamRoleStatements:
- Effect: Allow
Action:
- appsync:GetGraphqlApi
- appsync:UpdateGraphqlApi
Resource: !Ref TwitterGraphQlApi
- Effect: Allow
Action: iam:PassRole
Resource: !GetAtt AppSyncLoggingServiceRole.Arn
setResolverLogLevelToError:
handler: functions/set-resolver-log-level.handler
events:
- schedule: cron(12 * * * ? *) # 6 mins past the hour every hour
environment:
APPSYNC_API_ID: !GetAtt TwitterGraphQlApi.ApiId
FIELD_LOG_LEVEL: ERROR
iamRoleStatements:
- Effect: Allow
Action:
- appsync:GetGraphqlApi
- appsync:UpdateGraphqlApi
Resource: !Ref TwitterGraphQlApi
- Effect: Allow
Action: iam:PassRole
Resource: !GetAtt AppSyncLoggingServiceRole.Arn
resources:
Resources:
# DynamoDB
UsersTable: ${file(resources/dynamodb/UsersTable.yml):UsersTable}
TweetsTable: ${file(resources/dynamodb/TweetsTable.yml):TweetsTable}
TimelinesTable: ${file(resources/dynamodb/TimelinesTable.yml):TimelinesTable}
LikesTable: ${file(resources/dynamodb/LikesTable.yml):LikesTable}
RetweetsTable: ${file(resources/dynamodb/RetweetsTable.yml):RetweetsTable}
RelationshipsTable: ${file(resources/dynamodb/RelationshipsTable.yml):RelationshipsTable}
NotificationsTable: ${file(resources/dynamodb/NotificationsTable.yml):NotificationsTable}
ConversationsTable: ${file(resources/dynamodb/ConversationsTable.yml):ConversationsTable}
DirectMessagesTable: ${file(resources/dynamodb/DirectMessagesTable.yml):DirectMessagesTable}
# Cognito
CognitoUserPool: ${file(resources/cognito/CognitoUserPool.yml):CognitoUserPool}
UserPoolInvokeConfirmUserSignupLambdaPermission: ${file(resources/cognito/UserPoolInvokeConfirmUserSignupLambdaPermission.yml):UserPoolInvokeConfirmUserSignupLambdaPermission}
WebUserPoolClient: ${file(resources/cognito/WebUserPoolClient.yml):WebUserPoolClient}
IdentityPool: ${file(resources/cognito/IdentityPool.yml):IdentityPool}
IdentityPoolRoleMapping: ${file(resources/cognito/IdentityPoolRoleMapping.yml):IdentityPoolRoleMapping}
# S3
AssetsBucket: ${file(resources/s3/AssetsBucket.yml):AssetsBucket}
AnalyticsBucket: ${file(resources/s3/AnalyticsBucket.yml):AnalyticsBucket}
# Kinesis
FirehoseStream: ${file(resources/kinesis/FirehoseStream.yml):FirehoseStream}
# Cloudwatch
FirehoseLogGroup: ${file(resources/cloudwatch/FirehoseLogGroup.yml):FirehoseLogGroup}
FirehoseLogStream: ${file(resources/cloudwatch/FirehoseLogStream.yml):FirehoseLogStream}
# IAM
FirehoseDeliveryIamRole: ${file(resources/iam/FirehoseDeliveryIamRole.yml):FirehoseDeliveryIamRole}
UnauthedClientRole: ${file(resources/iam/UnauthedClientRole.yml):UnauthedClientRole}
AuthedClientRole: ${file(resources/iam/AuthedClientRole.yml):AuthedClientRole}
AppSyncLoggingServiceRole: ${file(resources/iam/AppSyncLoggingServiceRole.yml):AppSyncLoggingServiceRole}
Outputs:
AwsRegion:
Value: ${self:custom.region}
CognitoUserPoolId:
Value: !Ref CognitoUserPool
WebCognitoUserPoolClientId:
Value: !Ref WebUserPoolClient
CognitoUserPoolProviderName:
Value: !GetAtt CognitoUserPool.ProviderName
CognitoIdentityPoolId:
Value: !Ref IdentityPool
ApiUrl:
Value: !GetAtt TwitterGraphQlApi.GraphQLUrl # Got from CloudFormation template update stack (.serverless folder)
FirehoseStreamName:
Value: !Ref FirehoseStream