forked from em-shea/vocab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
672 lines (633 loc) · 20.6 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
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: A daily Chinese vocabulary app
Parameters:
WordsBucketName:
Type: String
WordsBucketKey:
Type: String
# ListsBucketName:
# Type: String
# ListsBucketKey:
# Type: String
OTPSecretKey:
Type: String
DynamoBackupsS3BucketName:
Type: String
Stage:
Type: String
Resources:
####################################################################################################
# API Gateway
####################################################################################################
VocabAppApi:
Type: AWS::Serverless::Api
Properties:
StageName: Prod
Cors:
AllowMethods: "'OPTIONS,POST,GET'"
AllowHeaders: "'*'"
AllowOrigin: "'*'"
Auth:
Authorizers:
CognitoAuthorizer:
UserPoolArn: !GetAtt UserPool.Arn
####################################################################################################
# Lambda functions
####################################################################################################
SendDailyEmail:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub SendDailyEmail-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/send_daily_email
Description: A function that sends a daily email to subscribers with a vocab word for each HSK level
Timeout: 120
EventInvokeConfig:
MaximumRetryAttempts: 0
Policies:
- SESCrudPolicy:
IdentityName: haohaotiantian.com
- S3ReadPolicy:
BucketName: !Ref WordsBucketName
- S3ReadPolicy:
BucketName: !Ref VocabAnnouncementsBucket
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
- DynamoDBCrudPolicy:
TableName: !Ref WordHistoryDynamoDBTable
- DynamoDBCrudPolicy:
TableName: !Ref SubscriberContactListDynamoDBTable
Environment:
Variables:
WORDS_BUCKET_NAME: !Ref WordsBucketName
WORDS_BUCKET_KEY: !Ref WordsBucketKey
# LISTS_BUCKET_NAME: !Ref ListsBucketName
# LISTS_BUCKET_KEY: !Ref ListsBucketKey
ANNOUNCEMENTS_BUCKET: !Ref VocabAnnouncementsBucket
TABLE_NAME: !Ref DynamoDBTable
# HISTORY_TABLE_NAME: !Ref WordHistoryDynamoDBTable
CONTACT_TABLE_NAME: !Ref SubscriberContactListDynamoDBTable
STAGE: !Ref Stage
Events:
DailySchedule:
Type: Schedule
Properties:
Schedule: cron(0 20 * * ? *)
Layers:
- !Ref Layer
SampleVocab:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub SampleVocab-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/sample_vocab
Description: A function that returns five random words for each HSK level
MemorySize: 128
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Events:
SampleVocabApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /sample_vocab
Method: GET
Layers:
- !Ref Layer
GetReviewWords:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub GetReviewWords-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/get_review_words
Description: A function that returns a list of previous daily words.
MemorySize: 128
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
# TABLE_NAME: !Ref WordHistoryDynamoDBTable
Events:
GetReviewWordsApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /review
Method: GET
Layers:
- !Ref Layer
SetSubscriptions:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub SetSubscriptions-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/set_subscriptions
Description: A function that creates, updates, or deletes users' list subscription
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Events:
SetSubsApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /set_subs
Method: POST
Layers:
- !Ref Layer
Unsubscribe:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub Unsubscribe-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/unsubscribe
Description: A function that unsubscribes users that are not signed in.
MemorySize: 128
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Events:
- Statement:
- Effect: Allow
Action:
- cognito-idp:AdminGetUser
Resource: !GetAtt UserPool.Arn
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
USER_POOL_ID: !Ref UserPool
Events:
UnsubApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /unsub
Method: POST
Layers:
- !Ref Layer
GetUserData:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub GetUserData-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/get_user_data
Description: A function that returns details for a specific user.
MemorySize: 128
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Events:
GetUserDataApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /user
Method: GET
Auth:
Authorizer: CognitoAuthorizer
Layers:
- !Ref Layer
SetUserData:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub SetUserData-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/set_user_data
Description: A function that updates a signed in user's metadata
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Events:
SetUserDataApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /update_user
Method: POST
Auth:
Authorizer: CognitoAuthorizer
SetLastLogin:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub SetLastLogin-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/set_last_login
Description: A function that updates metadata on when the user last logged in
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Events:
SetLastLoginApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /update_login
Method: POST
Auth:
Authorizer: CognitoAuthorizer
SetSentence:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub SetSentence-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/set_sentence
Description: A function that creates or updates a user's daily sentence
MemorySize: 128
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Events:
SetSentenceApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
Path: /sentence
Method: POST
Auth:
Authorizer: CognitoAuthorizer
Layers:
- !Ref Layer
GetSentences:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub GetSentences-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/get_sentences
Description: A function that retrieves a user's daily sentences
MemorySize: 128
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Events:
GetSentencesApi:
Type: Api
Properties:
RestApiId: !Ref VocabAppApi
# Will this work to have different functions on different methods of the same API path?
Path: /sentence
Method: GET
Auth:
Authorizer: CognitoAuthorizer
GetCharsForListId:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub GetCharsForListId-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/get_chars_for_list_id
Description: Retrieves list of characters for a given list id
MemorySize: 128
Timeout: 120
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
TABLE_NAME: !Ref DynamoDBTable
Layers:
- !Ref Layer
BackupDynamoDBToS3:
Type: 'AWS::Serverless::Function'
Properties:
FunctionName: !Sub BackupDynamoDBToS3-${Stage}
Handler: app.lambda_handler
Runtime: python3.7
CodeUri: src/backup_dynamodb_s3
Description: A function that scans the contact list database in DynamoDB and saves a back-up to S3
MemorySize: 128
Timeout: 120
Policies:
- S3WritePolicy:
BucketName: !Ref DynamoBackupsS3BucketName
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
Environment:
Variables:
BACKUPS_BUCKET_NAME: !Ref DynamoBackupsS3BucketName
TABLE_NAME: !Ref DynamoDBTable
Events:
WeeklyCloudWatchEvent:
Type: Schedule
Properties:
Schedule: cron(0 16 ? * FRI *)
Layer:
Type: 'AWS::Serverless::LayerVersion'
Properties:
ContentUri: src/layer
CompatibleRuntimes:
- python3.7
####################################################################################################
# DynamoDB table
####################################################################################################
DynamoDBTable:
Type: AWS::DynamoDB::Table
DeletionPolicy: Retain
Properties:
TableName: !Sub VocabAppTable-${Stage}
AttributeDefinitions:
- AttributeName: PK
AttributeType: S
- AttributeName: SK
AttributeType: S
- AttributeName: GSI1PK
AttributeType: S
- AttributeName: GSI1SK
AttributeType: S
KeySchema:
- AttributeName: PK
KeyType: HASH
- AttributeName: SK
KeyType: RANGE
GlobalSecondaryIndexes:
- IndexName: GSI1
KeySchema:
- AttributeName: GSI1PK
KeyType: HASH
- AttributeName: GSI1SK
KeyType: RANGE
Projection:
ProjectionType: ALL
BillingMode: PAY_PER_REQUEST
ProvisionedThroughput:
ReadCapacityUnits: 0
WriteCapacityUnits: 0
WordHistoryDynamoDBTable:
Type: AWS::DynamoDB::Table
DeletionPolicy: Retain
Properties:
TableName: !Sub WordHistory-${Stage}
AttributeDefinitions:
- AttributeName: ListId
AttributeType: S
- AttributeName: Date
AttributeType: S
KeySchema:
- AttributeName: ListId
KeyType: HASH
- AttributeName: Date
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
ProvisionedThroughput:
ReadCapacityUnits: 0
WriteCapacityUnits: 0
SubscriberContactListDynamoDBTable:
Type: AWS::DynamoDB::Table
DeletionPolicy: Retain
Properties:
TableName: !Sub SubscriberContactList-${Stage}
AttributeDefinitions:
- AttributeName: ListId
AttributeType: S
- AttributeName: SubscriberEmail
AttributeType: S
KeySchema:
- AttributeName: ListId
KeyType: HASH
- AttributeName: SubscriberEmail
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
ProvisionedThroughput:
ReadCapacityUnits: 0
WriteCapacityUnits: 0
####################################################################################################
# S3 buckets
####################################################################################################
VocabAnnouncementsBucket:
Type: AWS::S3::Bucket
Properties:
AccessControl: Private
BucketName: !Sub hhtt-email-announcements-${Stage}
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
PronunciationAudioBucket:
Type: AWS::S3::Bucket
Properties:
AccessControl: PublicRead
BucketName: !Sub vocab-audio-${Stage}
AudioFileBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref PronunciationAudioBucket
PolicyDocument:
Statement:
- Sid: AudioAllowRead
Effect: Allow
Principal: "*"
Action:
- s3:GetObject
Resource:
- !Join ["", ["arn:aws:s3:::", !Ref PronunciationAudioBucket, "/audio/*"]]
####################################################################################################
# State machine
####################################################################################################
GenerateAudioStateMachine:
Type: AWS::Serverless::StateMachine
Properties:
Name: !Sub GenerateAudioStateMachine-${Stage}
DefinitionUri: src/generate_audio_state_machine.asl.json
DefinitionSubstitutions:
TableName: !Ref DynamoDBTable
GetCharsForListIdFunction: !Ref GetCharsForListId
PronunciationAudioBucket: !Ref PronunciationAudioBucket
Policies:
- S3WritePolicy:
BucketName: !Ref PronunciationAudioBucket
- DynamoDBCrudPolicy:
TableName: !Ref DynamoDBTable
- LambdaInvokePolicy:
FunctionName: !Ref GetCharsForListId
- Statement:
- Sid: PollySynthesizeText
Effect: Allow
Action:
- polly:StartSpeechSynthesisTask
Resource: '*'
####################################################################################################
# Cognito & authentication workflow Lambda functions
####################################################################################################
UserPool:
Type: "AWS::Cognito::UserPool"
Properties:
UserPoolName: !Sub VocabAppUserPool-${Stage}
Schema:
- Name: email
AttributeDataType: String
Mutable: true
Required: true
Policies:
PasswordPolicy:
MinimumLength: 8
RequireLowercase: false
RequireNumbers: false
RequireSymbols: false
RequireUppercase: false
UsernameAttributes:
- email
MfaConfiguration: "OFF"
LambdaConfig:
PreSignUp: !GetAtt PreSignUp.Arn
DefineAuthChallenge: !GetAtt DefineAuthChallenge.Arn
CreateAuthChallenge: !GetAtt CreateAuthChallenge.Arn
VerifyAuthChallengeResponse: !GetAtt VerifyAuthChallengeResponse.Arn
PreSignUp:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/user_pool_triggers/pre_sign_up/
Handler: app.lambda_handler
Runtime: python3.7
DefineAuthChallenge:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/user_pool_triggers/define_auth_challenge/
Handler: app.lambda_handler
Runtime: python3.7
CreateAuthChallenge:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/user_pool_triggers/create_auth_challenge/
Handler: app.lambda_handler
Runtime: python3.7
Environment:
Variables:
STAGE: !Ref Stage
OTP_SECRET_KEY: !Ref OTPSecretKey
Policies:
- Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- ses:SendEmail
Resource: "*"
VerifyAuthChallengeResponse:
Type: AWS::Serverless::Function
Properties:
CodeUri: src/user_pool_triggers/verify_auth_challenge_response/
Handler: app.lambda_handler
Runtime: python3.7
Role: !GetAtt VerifyAuthChallengeRole.Arn
# Creatinging a role to attach SetUserAttributesPolicy to
VerifyAuthChallengeRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
# Giving the VerifyAuthChallenge role the permissions to update the user's email to verified
SetUserAttributesPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: allow-set-user-attributes
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- cognito-idp:AdminUpdateUserAttributes
Resource:
- !GetAtt UserPool.Arn
Roles:
- !Ref VerifyAuthChallengeRole
# Giving the user pool permissions to invoke the Lambda functions
DefineAuthChallengeInvocationPermission:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt DefineAuthChallenge.Arn
Principal: cognito-idp.amazonaws.com
SourceArn: !GetAtt UserPool.Arn
CreateAuthChallengeInvocationPermission:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt CreateAuthChallenge.Arn
Principal: cognito-idp.amazonaws.com
SourceArn: !GetAtt UserPool.Arn
VerifyAuthChallengeResponseInvocationPermission:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt VerifyAuthChallengeResponse.Arn
Principal: cognito-idp.amazonaws.com
SourceArn: !GetAtt UserPool.Arn
PreSignUpInvocationPermission:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt PreSignUp.Arn
Principal: cognito-idp.amazonaws.com
SourceArn: !GetAtt UserPool.Arn
# User pool client only allows custom auth
# A password is generated for each user, but they are not able to use it to login (since they will be using email)
UserPoolClient:
Type: "AWS::Cognito::UserPoolClient"
Properties:
ClientName: email-auth-client
GenerateSecret: false
UserPoolId: !Ref UserPool
ExplicitAuthFlows:
- CUSTOM_AUTH_FLOW_ONLY
####################################################################################################
# Outputs
####################################################################################################
Outputs:
UserPoolId:
Description: ID of the User Pool
Value: !Ref UserPool
UserPoolClientId:
Description: ID of the User Pool Client
Value: !Ref UserPoolClient