-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yaml
More file actions
404 lines (381 loc) · 12.5 KB
/
template.yaml
File metadata and controls
404 lines (381 loc) · 12.5 KB
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
AWSTemplateFormatVersion: 2010-09-09
Description: >-
lottery-api
Transform:
- AWS::Serverless-2016-10-31
Globals:
Api:
OpenApiVersion: 3.0.1
Function:
Runtime: nodejs18.x
Timeout: 30
MemorySize: 128
Architectures:
- x86_64
Resources:
## STATE MACHINES
AdminUpdateUserStateMachine:
Type: AWS::StepFunctions::StateMachine
Properties:
StateMachineName: admin-update-user-state-machine
Definition:
Comment: Update User in Cognito User Pool
StartAt: ParallelUpdate
States:
ParallelUpdate:
Type: Parallel
Branches:
- StartAt: UpdateGivenName
States:
UpdateGivenName:
Type: Task
Resource: !Sub arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${AdminUpdateUserByIdFunction}
Parameters:
userId.$: $.id
updateField: given_name
updateValue.$: $.updateParams.givenName
End: true
- StartAt: UpdateFamilyName
States:
UpdateFamilyName:
Type: Task
Resource: !Sub arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${AdminUpdateUserByIdFunction}
Parameters:
userId.$: $.id
updateField: family_name
updateValue.$: $.updateParams.familyName
End: true
Catch:
- ErrorEquals: ["States.ALL"]
Next: HandleError
Next: ParallelUpdateEnd
HandleError:
Type: Fail
Error: "ErrorUpdatingUserAttributes"
Cause: "An error occurred while updating user attributes"
ParallelUpdateEnd:
Type: Pass
Result: Parallel Update Complete
End: true
RoleArn: !Sub arn:aws:iam::${AWS::AccountId}:role/admin-commands-state-machine-role
AdminDeleteUserStateMachine:
Type: AWS::StepFunctions::StateMachine
Properties:
StateMachineName: admin-delete-user-state-machine
Definition:
Comment: Delete User in Cognito User Pool
StartAt: DeleteUser
States:
DeleteUser:
Type: Task
Resource: !Sub arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${AdminDeleteUserByIdFunction}
Parameters:
userId.$: $.id
End: true
RoleArn: !Sub arn:aws:iam::${AWS::AccountId}:role/admin-commands-state-machine-role
AdminCreateLotteryStateMachine:
Type: AWS::StepFunctions::StateMachine
Properties:
StateMachineName: admin-create-lottery-state-machine
Definition:
Comment: Pick a lottery winner, insert into LotteryWinnersTable, and contact winner
StartAt: PickLotteryWinner
States:
PickLotteryWinner:
Type: Task
Resource: !Sub arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${AdminPickLotteryWinnerFunction}
ResultPath: $.winnerData
Next: InsertIntoLotteryWinnersTable
InsertIntoLotteryWinnersTable:
Type: Task
Resource: arn:aws:states:::dynamodb:putItem
Parameters:
TableName: !Ref LotteryWinnersTable
Item:
userEmail:
S.$: $.winnerData.userEmail
userId:
S.$: $.winnerData.userId
userStatus:
S.$: $.winnerData.userStatus
ResultPath: $.dynamoOutput
Next: NotifyWinner
NotifyWinner:
Type: Task
Resource: !Sub arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${NotifyLotteryWinnerFunction}
Parameters:
winnerEmail.$: $.winnerData.userEmail
End: true
RoleArn: !Sub arn:aws:iam::${AWS::AccountId}:role/admin-commands-state-machine-role
## IAM ROLES
AdminCommandsStateMachineRole:
Type: AWS::IAM::Role
Properties:
RoleName: admin-commands-state-machine-role
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: states.amazonaws.com
Action: sts:AssumeRole
Policies:
- PolicyName: AllowLambdaInvoke
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource: !Sub arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:*
- PolicyName: AllowDynamoDbPut
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:PutItem
Resource:
- !GetAtt LotteryWinnersTable.Arn
ApiGatewayAdminStepFunctionsRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AllowApiGatewayServiceToAssumeRole
Effect: Allow
Action:
- sts:AssumeRole
Principal:
Service:
- apigateway.amazonaws.com
Policies:
- PolicyName: CallStepFunctions
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- states:StartExecution
Resource:
- !Ref AdminUpdateUserStateMachine
- !Ref AdminDeleteUserStateMachine
- !Ref AdminCreateLotteryStateMachine
- PolicyName: InvokeFunctions
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource:
- !GetAtt AdminGetAllUsersFunction.Arn
- !GetAtt AdminGetUserByIdFunction.Arn
ApiGatewayAuthInvokeRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AllowApiGatewayServiceToAssumeRole
Effect: Allow
Action:
- sts:AssumeRole
Principal:
Service:
- apigateway.amazonaws.com
Policies:
- PolicyName: InvokeFunctions
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource:
- !GetAtt UserCheckWinnerFunction.Arn
- !GetAtt UserRegistrationFunction.Arn
- !GetAtt UserRegistrationConfirmationFunction.Arn
AdminUserApi:
Type: AWS::Serverless::Api
Properties:
StageName: Test
DefinitionBody:
'Fn::Transform':
Name: 'AWS::Include'
Parameters:
Location: dist/open-api-specification.yaml
## LAMBDA RESOURCES
# ADMIN LAMBDAS
AdminGetAllUsersFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/admin-get-all-users/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- cognito-idp:ListUsers
Resource:
!Sub arn:aws:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/${LotteryPlayersUserPool}
Environment:
Variables:
USER_POOL_ID: !Ref LotteryPlayersUserPool
AdminGetUserByIdFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/admin-get-user-by-id/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- cognito-idp:AdminGetUser
Resource:
!Sub arn:aws:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/${LotteryPlayersUserPool}
Environment:
Variables:
USER_POOL_ID: !Ref LotteryPlayersUserPool
AdminUpdateUserByIdFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/admin-update-user-by-id/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- cognito-idp:AdminUpdateUserAttributes
Resource:
!Sub arn:aws:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/${LotteryPlayersUserPool}
Environment:
Variables:
USER_POOL_ID: !Ref LotteryPlayersUserPool
AdminDeleteUserByIdFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/admin-delete-user-by-id/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- cognito-idp:AdminDeleteUser
Resource:
!Sub arn:aws:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/${LotteryPlayersUserPool}
Environment:
Variables:
USER_POOL_ID: !Ref LotteryPlayersUserPool
AdminPickLotteryWinnerFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/pick-lottery-winner/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- cognito-idp:ListUsers
Resource:
!Sub arn:aws:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/${LotteryPlayersUserPool}
Environment:
Variables:
USER_POOL_ID: !Ref LotteryPlayersUserPool
NotifyLotteryWinnerFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/notify-lottery-winner/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- ses:SendEmail
Resource:
- "*"
# USER LAMBDAS
UserRegistrationFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/user-registration/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- cognito-idp:SignUp
Resource:
!Sub arn:aws:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/${LotteryPlayersUserPool}
Environment:
Variables:
COGNITO_CLIENT_ID: !Ref LotteryPlayersUserPoolClient
UserRegistrationConfirmationFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/user-registration-confirmation/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- cognito-idp:ConfirmSignUpCommand
Resource:
!Sub arn:aws:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/${LotteryPlayersUserPool}
Environment:
Variables:
COGNITO_CLIENT_ID: !Ref LotteryPlayersUserPoolClient
UserCheckWinnerFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: dist/user-check-winner/
Handler: handler.handler
Policies:
- Statement:
- Effect: Allow
Action:
- dynamodb:GetItem
Resource:
!GetAtt LotteryWinnersTable.Arn
Environment:
Variables:
LOTTERY_WINNERS_TABLE_NAME: !Ref LotteryWinnersTable
## DYNAMO TABLE
LotteryWinnersTable:
Type: AWS::Serverless::SimpleTable
Properties:
TableName: lottery-winners-table
PrimaryKey:
Name: userEmail
Type: String
ProvisionedThroughput:
ReadCapacityUnits: 2
WriteCapacityUnits: 2
## COGNITO RESOURCES
LotteryPlayersUserPool:
Type: AWS::Cognito::UserPool
Properties:
UserPoolName: lottery-players-user-pool
AutoVerifiedAttributes:
- email
Schema:
- Name: given_name
AttributeDataType: String
Mutable: true
Required: true
- Name: family_name
AttributeDataType: String
Mutable: true
Required: true
VerificationMessageTemplate:
DefaultEmailOption: CONFIRM_WITH_CODE
LotteryPlayersUserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
UserPoolId: !Ref LotteryPlayersUserPool
GenerateSecret: false
Outputs:
WebEndpoint:
Description: "API Gateway endpoint URL for Prod stage"
Value: !Sub "https://${AdminUserApi}.execute-api.${AWS::Region}.amazonaws.com/Test/"