-
Notifications
You must be signed in to change notification settings - Fork 17
/
function02-template.yaml
444 lines (438 loc) · 14.5 KB
/
function02-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
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
438
439
440
441
442
443
444
AWSTemplateFormatVersion: '2010-09-09'
Description: Lambda functions and API Gateway resources for the ALIS application.
Parameters:
AlisAppId:
Type: String
ArticleInfoTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
ArticleContentEditHistoryTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
UsersTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
UserConfigurationsTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
TopicTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
ElasticSearchEndpoint:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainAwsAccessKey:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainAwsSecretAccessKey:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainExecuteApiHost:
Type: 'AWS::SSM::Parameter::Value<String>'
SucceededTipTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
NotificationTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
UnreadNotificationManagerTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
ScreenedArticleTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
CognitoUserPoolId:
Type: 'AWS::SSM::Parameter::Value<String>'
CognitoIdentityPoolId:
Type: 'AWS::SSM::Parameter::Value<String>'
AllTokenHistoryCsvDownloadS3Bucket:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainOperationUrl:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainAlisTokenAddress:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainBridgeAddress:
Type: 'AWS::SSM::Parameter::Value<String>'
BurnAddress:
Type: 'AWS::SSM::Parameter::Value<String>'
ArticleEvaluatedManageTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
AcquisitionInfoTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
Resources:
# Functions
ArticleSupportersIndex:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/articles_supporters_index.zip
Environment:
Variables:
ARTICLE_INFO_TABLE_NAME: !Ref ArticleInfoTableName
SUCCEEDED_TIP_TABLE_NAME: !Ref SucceededTipTableName
USERS_TABLE_NAME: !Ref UsersTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
ArticlesTipRanking:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/articles_tip_ranking.zip
Environment:
Variables:
TOPIC_TABLE_NAME: !Ref TopicTableName
SCREENED_ARTICLE_TABLE_NAME: !Ref ScreenedArticleTableName
ELASTIC_SEARCH_ENDPOINT: !Ref ElasticSearchEndpoint
PRIVATE_CHAIN_AWS_SECRET_ACCESS_KEY: !Ref PrivateChainAwsSecretAccessKey
PRIVATE_CHAIN_EXECUTE_API_HOST: !Ref PrivateChainExecuteApiHost
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeArticlesContentEditHistoriesIndex:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_articles_content_edit_histories_index.zip
Environment:
Variables:
ARTICLE_INFO_TABLE_NAME: !Ref ArticleInfoTableName
ARTICLE_CONTENT_EDIT_HISTORY_TABLE_NAME: !Ref ArticleContentEditHistoryTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeArticlesDraftsDelete:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_articles_drafts_delete.zip
Environment:
Variables:
ARTICLE_INFO_TABLE_NAME: !Ref ArticleInfoTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeConfigurationsMuteUsersAdd:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_configurations_mute_users_add.zip
Environment:
Variables:
USERS_TABLE_NAME: !Ref UsersTableName
USER_CONFIGURATIONS_TABLE_NAME: !Ref UserConfigurationsTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeConfigurationsMuteUsersDelete:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_configurations_mute_users_delete.zip
Environment:
Variables:
USERS_TABLE_NAME: !Ref UsersTableName
USER_CONFIGURATIONS_TABLE_NAME: !Ref UserConfigurationsTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeConfigurationsMuteUsersIndex:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_configurations_mute_users_index.zip
Environment:
Variables:
USER_CONFIGURATIONS_TABLE_NAME: !Ref UserConfigurationsTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeConfigurationsWalletAdd:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_configurations_wallet_add.zip
Environment:
Variables:
USER_CONFIGURATIONS_TABLE_NAME: !Ref UserConfigurationsTableName
COGNITO_USER_POOL_ID: !Ref CognitoUserPoolId
PRIVATE_CHAIN_OPERATION_URL: !Ref PrivateChainOperationUrl
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeConfigurationsWalletShow:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_configurations_wallet_show.zip
Environment:
Variables:
USER_CONFIGURATIONS_TABLE_NAME: !Ref UserConfigurationsTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
MeWalletTokenAllhistoriesCreate:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_wallet_token_allhistories_create.zip
Environment:
Variables:
NOTIFICATION_TABLE_NAME: !Ref NotificationTableName
UNREAD_NOTIFICATION_MANAGER_TABLE_NAME: !Ref UnreadNotificationManagerTableName
COGNITO_USER_POOL_ID: !Ref CognitoUserPoolId
COGNITO_IDENTITY_POOL_ID: !Ref CognitoIdentityPoolId
PRIVATE_CHAIN_ALIS_TOKEN_ADDRESS: !Ref PrivateChainAlisTokenAddress
PRIVATE_CHAIN_OPERATION_URL: !Ref PrivateChainOperationUrl
PRIVATE_CHAIN_BRIDGE_ADDRESS: !Ref PrivateChainBridgeAddress
ALL_TOKEN_HISTORY_CSV_DOWNLOAD_S3_BUCKET: !Ref AllTokenHistoryCsvDownloadS3Bucket
BURN_ADDRESS: !Ref BurnAddress
USER_CONFIGURATIONS_TABLE_NAME: !Ref UserConfigurationsTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 900
TracingConfig:
Mode: "Active"
MeWalletAllowanceShow:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_wallet_allowance_show.zip
Environment:
Variables:
PRIVATE_CHAIN_BRIDGE_ADDRESS: !Ref PrivateChainBridgeAddress
PRIVATE_CHAIN_EXECUTE_API_HOST: !Ref PrivateChainExecuteApiHost
PRIVATE_CHAIN_AWS_ACCESS_KEY: !Ref PrivateChainAwsAccessKey
PRIVATE_CHAIN_AWS_SECRET_ACCESS_KEY: !Ref PrivateChainAwsSecretAccessKey
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 900
TracingConfig:
Mode: "Active"
MeWalletNonceShow:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/me_wallet_nonce_show.zip
Environment:
Variables:
PRIVATE_CHAIN_EXECUTE_API_HOST: !Ref PrivateChainExecuteApiHost
PRIVATE_CHAIN_AWS_ACCESS_KEY: !Ref PrivateChainAwsAccessKey
PRIVATE_CHAIN_AWS_SECRET_ACCESS_KEY: !Ref PrivateChainAwsSecretAccessKey
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 900
TracingConfig:
Mode: "Active"
UsersArticlesPopular:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/users_articles_popular.zip
Environment:
Variables:
ARTICLE_INFO_TABLE_NAME: !Ref ArticleInfoTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 900
TracingConfig:
Mode: "Active"
UsersWalletAddressShow:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/users_wallet_address_show.zip
Environment:
Variables:
COGNITO_USER_POOL_ID: !Ref CognitoUserPoolId
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 900
TracingConfig:
Mode: "Active"
TopicsCryptoRankingIndex:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/topics_crypto_ranking_index.zip
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 15
TracingConfig:
Mode: "Active"
SearchTagsCount:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/search_tags_count.zip
Environment:
Variables:
ELASTIC_SEARCH_ENDPOINT: !Ref ElasticSearchEndpoint
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
TopicsGameNftGamesRankingIndex:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/topics_game_nft_games_ranking_index.zip
Environment:
Variables:
ELASTIC_SEARCH_ENDPOINT: !Ref ElasticSearchEndpoint
ACQUISITION_INFO_TABLE_NAME: !Ref AcquisitionInfoTableName
ARTICLE_EVALUATED_MANAGE_TABLE_NAME: !Ref ArticleEvaluatedManageTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
TopicsGameNftGamesShow:
Type: "AWS::Lambda::Function"
Properties:
Code: ./deploy/topics_game_nft_games_show.zip
Environment:
Variables:
ELASTIC_SEARCH_ENDPOINT: !Ref ElasticSearchEndpoint
ACQUISITION_INFO_TABLE_NAME: !Ref AcquisitionInfoTableName
ARTICLE_EVALUATED_MANAGE_TABLE_NAME: !Ref ArticleEvaluatedManageTableName
Handler: handler.lambda_handler
MemorySize: 3008
Role:
Fn::ImportValue:
Fn::Sub: "${AlisAppId}-LambdaRole"
Runtime: python3.9
Timeout: 300
TracingConfig:
Mode: "Active"
Outputs:
ArticleSupportersIndex:
Value: !GetAtt ArticleSupportersIndex.Arn
Export:
Name: !Sub "${AlisAppId}-ArticleSupportersIndex"
ArticlesTipRanking:
Value: !GetAtt ArticlesTipRanking.Arn
Export:
Name: !Sub "${AlisAppId}-ArticlesTipRanking"
MeArticlesContentEditHistoriesIndex:
Value: !GetAtt MeArticlesContentEditHistoriesIndex.Arn
Export:
Name: !Sub "${AlisAppId}-MeArticlesContentEditHistoriesIndex"
MeArticlesDraftsDelete:
Value: !GetAtt MeArticlesDraftsDelete.Arn
Export:
Name: !Sub "${AlisAppId}-MeArticlesDraftsDelete"
MeConfigurationsMuteUsersAdd:
Value: !GetAtt MeConfigurationsMuteUsersAdd.Arn
Export:
Name: !Sub "${AlisAppId}-MeConfigurationsMuteUsersAdd"
MeConfigurationsMuteUsersDelete:
Value: !GetAtt MeConfigurationsMuteUsersDelete.Arn
Export:
Name: !Sub "${AlisAppId}-MeConfigurationsMuteUsersDelete"
MeConfigurationsMuteUsersIndex:
Value: !GetAtt MeConfigurationsMuteUsersIndex.Arn
Export:
Name: !Sub "${AlisAppId}-MeConfigurationsMuteUsersIndex"
MeConfigurationsWalletAdd:
Value: !GetAtt MeConfigurationsWalletAdd.Arn
Export:
Name: !Sub "${AlisAppId}-MeConfigurationsWalletAdd"
MeConfigurationsWalletShow:
Value: !GetAtt MeConfigurationsWalletShow.Arn
Export:
Name: !Sub "${AlisAppId}-MeConfigurationsWalletShow"
MeWalletTokenAllhistoriesCreate:
Value: !GetAtt MeWalletTokenAllhistoriesCreate.Arn
Export:
Name: !Sub "${AlisAppId}-MeWalletTokenAllhistoriesCreate"
MeWalletAllowanceShow:
Value: !GetAtt MeWalletAllowanceShow.Arn
Export:
Name: !Sub "${AlisAppId}-MeWalletAllowanceShow"
MeWalletNonceShow:
Value: !GetAtt MeWalletNonceShow.Arn
Export:
Name: !Sub "${AlisAppId}-MeWalletNonceShow"
UsersWalletAddressShow:
Value: !GetAtt UsersWalletAddressShow.Arn
Export:
Name: !Sub "${AlisAppId}-UsersWalletAddressShow"
UsersArticlesPopular:
Value: !GetAtt UsersArticlesPopular.Arn
Export:
Name: !Sub "${AlisAppId}-UsersArticlesPopular"
TopicsCryptoRankingIndex:
Value: !GetAtt TopicsCryptoRankingIndex.Arn
Export:
Name: !Sub "${AlisAppId}-TopicsCryptoRankingIndex"
SearchTagsCount:
Value: !GetAtt SearchTagsCount.Arn
Export:
Name: !Sub "${AlisAppId}-SearchTagsCount"
TopicsGameNftGamesRankingIndex:
Value: !GetAtt TopicsGameNftGamesRankingIndex.Arn
Export:
Name: !Sub "${AlisAppId}-TopicsGameNftGamesRankingIndex"
TopicsGameNftGamesShow:
Value: !GetAtt TopicsGameNftGamesShow.Arn
Export:
Name: !Sub "${AlisAppId}-TopicsGameNftGamesShow"