-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.yml
481 lines (456 loc) · 16.3 KB
/
resources.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
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
Resources:
ArithmeticCalculatorCognitoUserPool:
# Reference: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html
Type: AWS::Cognito::UserPool
Properties:
UserPoolName: ArithmeticCalculator
AliasAttributes:
- email
AutoVerifiedAttributes:
- email
# Users managed by admin only
AccountRecoverySetting:
RecoveryMechanisms:
- Name: "admin_only"
Priority: 2
AdminCreateUserConfig:
# Remove self-service sign up
AllowAdminCreateUserOnly: true
Policies:
PasswordPolicy:
MinimumLength: 6
RequireLowercase: true
RequireNumbers: true
RequireSymbols: true
RequireUppercase: true
TemporaryPasswordValidityDays: 14
ArithmeticCalculatorCognitoUserPoolClient:
# Reference: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: ArithmeticCalculatorWebApp
GenerateSecret: false
AllowedOAuthFlows:
- code
- implicit
AllowedOAuthFlowsUserPoolClient: true
SupportedIdentityProviders:
- COGNITO
AllowedOAuthScopes:
- openid
UserPoolId:
Ref: "ArithmeticCalculatorCognitoUserPool"
CallbackURLs: ${self:custom.callBackUrls.${opt:stage, self:provider.stage}}
LogoutURLs: ${self:custom.signOutURLs.${opt:stage, self:provider.stage}}
ArithmeticCalculatorCognitoUserPoolDomain:
# Reference: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooldomain.html
Type: AWS::Cognito::UserPoolDomain
Properties:
Domain: ${opt:stage, self:provider.stage}-${self:service}
UserPoolId:
Ref: "ArithmeticCalculatorCognitoUserPool"
ArithmeticCalculatorAuthorizer:
# Reference: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html
Type: AWS::ApiGateway::Authorizer
Properties:
Name: ArithmeticCalculator
RestApiId:
Ref: ApiGatewayRestApi
Type: COGNITO_USER_POOLS
ProviderARNs:
- Fn::GetAtt: [ ArithmeticCalculatorCognitoUserPool, Arn ]
IdentitySource: method.request.header.Authorization
ArithmeticOperationTopic:
Type: AWS::SNS::Topic
Properties:
TopicName: arithmetic-operation-${opt:stage, self:provider.stage}
ArithmeticOperationQueue:
Type: AWS::SQS::Queue
Properties:
QueueName: arithmetic-operation-${opt:stage, self:provider.stage}
VisibilityTimeout: 180
ArithemticOperationQueueSubscription:
Type: AWS::SNS::Subscription
Properties:
Endpoint:
Fn::GetAtt: [ ArithmeticOperationQueue, Arn ]
Protocol: sqs
RawMessageDelivery: true
TopicArn:
Ref: ArithmeticOperationTopic
ArithmeticOperationQueuePolicy:
Type: AWS::SQS::QueuePolicy
Properties:
PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Principal": {
"Service": "sns.amazonaws.com"
},
"Action": ["sqs:SendMessage"],
"Resource": "*",
"Condition": {
"ArnEquals": {
"aws:SourceArn": {
"Ref": "ArithmeticOperationTopic"
}
}
}
}]
}
Queues:
- Ref: ArithmeticOperationQueue
GenerateRandomStringTopic:
Type: AWS::SNS::Topic
Properties:
TopicName: generate-random-string-${opt:stage, self:provider.stage}
GenerateRandomStringQueue:
Type: AWS::SQS::Queue
Properties:
QueueName: generate-random-string-${opt:stage, self:provider.stage}
VisibilityTimeout: 180
GenerateRandomStringQueueSubscription:
Type: AWS::SNS::Subscription
Properties:
Endpoint:
Fn::GetAtt: [ GenerateRandomStringQueue, Arn ]
Protocol: sqs
RawMessageDelivery: true
TopicArn:
Ref: GenerateRandomStringTopic
GenerateRandomStringQueuePolicy:
Type: AWS::SQS::QueuePolicy
Properties:
PolicyDocument: {
"Statement": [ {
"Effect": "Allow",
"Principal": {
"Service": "sns.amazonaws.com"
},
"Action": [ "sqs:SendMessage" ],
"Resource": "*",
"Condition": {
"ArnEquals": {
"aws:SourceArn": {
"Ref": "GenerateRandomStringTopic"
}
}
}
} ]
}
Queues:
- Ref: GenerateRandomStringQueue
NewOperationLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Description: "New Operation Lambda Role"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaRole
Policies:
- PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Action": [
"sns:Publish",
"sns:CreateTopic"
],
"Resource": [
{ "Ref": "ArithmeticOperationTopic" },
{ "Ref": "GenerateRandomStringTopic" }
]
},
{
"Effect": "Allow",
"Action": [
"dynamodb:Query",
"dynamodb:PutItem"
],
"Resource": [
{ "Fn::GetAtt": ["ArithmeticCalculatorTable", "Arn"] },
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI1" ] ]},
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI2" ] ]}
]
},
]
}
PolicyName: ${self:service}-newOperation-lambda-policy-${opt:stage, self:provider.stage}
RoleName: ${self:service}-newOperation-lambda-role-${opt:stage, self:provider.stage}
GetBalanceLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Description: "Get Balance Lambda Role"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaRole
Policies:
- PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Action": [
"dynamodb:Query"
],
"Resource": [
{ "Fn::GetAtt": ["ArithmeticCalculatorTable", "Arn"] },
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI1" ] ]},
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI2" ] ]}
]
},
]
}
PolicyName: ${self:service}-getBalance-lambda-policy-${opt:stage, self:provider.stage}
RoleName: ${self:service}-getBalance-lambda-role-${opt:stage, self:provider.stage}
DeleteRecordLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Description: "Delete Record Lambda Role"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaRole
Policies:
- PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Action": [
"dynamodb:UpdateItem"
],
"Resource": [
{ "Fn::GetAtt": ["ArithmeticCalculatorTable", "Arn"] },
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI1" ] ]},
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI2" ] ]}
]
},
]
}
PolicyName: ${self:service}-deleteRecord-lambda-policy-${opt:stage, self:provider.stage}
RoleName: ${self:service}-deleteRecord-lambda-role-${opt:stage, self:provider.stage}
PollResultsLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Description: "Poll Results Lambda Role"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaRole
Policies:
- PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Action": [
"dynamodb:GetItem"
],
"Resource": [
{ "Fn::GetAtt": ["ArithmeticCalculatorTable", "Arn"] },
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI1" ] ]},
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI2" ] ]}
]
},
]
}
PolicyName: ${self:service}-pollResults-lambda-policy-${opt:stage, self:provider.stage}
RoleName: ${self:service}-pollResults-lambda-role-${opt:stage, self:provider.stage}
ListRecordsLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Description: "List Records Lambda Role"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaRole
Policies:
- PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Action": [
"dynamodb:Query"
],
"Resource": [
{ "Fn::GetAtt": ["ArithmeticCalculatorTable", "Arn"] },
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI1" ] ]},
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI2" ] ]}
]
},
]
}
PolicyName: ${self:service}-listRecords-lambda-policy-${opt:stage, self:provider.stage}
RoleName: ${self:service}-listRecords-lambda-role-${opt:stage, self:provider.stage}
ListOperationsLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Description: "List Operations Lambda Role"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaRole
Policies:
- PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Action": [
"dynamodb:Query",
"dynamodb:PutItem"
],
"Resource": [
{ "Fn::GetAtt": ["ArithmeticCalculatorTable", "Arn"] },
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI1" ] ]},
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI2" ] ]}
]
},
]
}
PolicyName: ${self:service}-listOperations-lambda-policy-${opt:stage, self:provider.stage}
RoleName: ${self:service}-listOperations-lambda-role-${opt:stage, self:provider.stage}
OperationWorkerLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Description: "Role shared by Operation worker Lambdas"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaRole
- arn:aws:iam::aws:policy/service-role/AWSLambdaSQSQueueExecutionRole
Policies:
- PolicyDocument: {
"Statement": [{
"Effect": "Allow",
"Action": [
"sqs:ReceiveMessage",
"sqs:DeleteMessage",
"sqs:GetQueueAttributes",
"sqs:ChangeMessageVisibility",
"sqs:GetQueueAttributes",
"sqs:GetQueueUrl"
],
"Resource": [
{ "Fn::GetAtt" : ["ArithmeticOperationQueue", "Arn"]}
]
},
{
"Effect": "Allow",
"Action": [
"dynamodb:Query",
"dynamodb:PutItem"
],
"Resource": [
{ "Fn::GetAtt": ["ArithmeticCalculatorTable", "Arn"] },
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI1" ] ]},
{ "Fn::Join" : [ "/", [ "Fn::GetAtt": [ "ArithmeticCalculatorTable", "Arn" ], "index", "GSI2" ] ]}
]
},
]
}
PolicyName: ${self:service}-operationWorker-lambda-policy-${opt:stage, self:provider.stage}
RoleName: ${self:service}-operationWorker-lambda-role-${opt:stage, self:provider.stage}
ArithmeticCalculatorTable:
# Reference: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: PK
AttributeType: S
- AttributeName: SK
AttributeType: S
- AttributeName: GSI1PK
AttributeType: S
- AttributeName: GSI1SK
AttributeType: S
- AttributeName: GSI2PK
AttributeType: S
- AttributeName: GSI2SK
AttributeType: S
KeySchema:
- AttributeName: PK
KeyType: HASH
- AttributeName: SK
KeyType: RANGE
ProvisionedThroughput:
ReadCapacityUnits: 3
WriteCapacityUnits: 2
TableName: ${self:custom.tableName}
GlobalSecondaryIndexes:
- IndexName: GSI1
KeySchema:
- AttributeName: GSI1PK
KeyType: HASH
- AttributeName: GSI1SK
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 3
WriteCapacityUnits: 2
- IndexName: GSI2
KeySchema:
- AttributeName: GSI2PK
KeyType: HASH
- AttributeName: GSI2SK
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 3
WriteCapacityUnits: 2
Outputs:
CognitoUserPoolId:
Description: "Arithmetic Calculator Cognito User Pool ID"
Value:
Ref: "ArithmeticCalculatorCognitoUserPool"
CognitoUserPoolClientId:
Description: "Arithmetic Calculator Cognito User Pool Client ID"
Value:
Ref: "ArithmeticCalculatorCognitoUserPoolClient"
CognitoUserPoolDomain:
Description: "Arithmetic Calculator Cognito User Pool Default Domain"
Value:
Ref: "ArithmeticCalculatorCognitoUserPoolDomain"
CallbackURL:
Description: "A callback URL is where the user is redirected to after a successful sign-in."
Value: ${self:custom.defaultCallBackURL.${opt:stage, self:provider.stage}}
SignOutURL:
Description: "A sign-out URL is where your user is redirected to after signing out."
Value: ${self:custom.defaultSignOutURL.${opt:stage, self:provider.stage}}