-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yaml
More file actions
425 lines (418 loc) · 12.4 KB
/
Copy pathtemplate.yaml
File metadata and controls
425 lines (418 loc) · 12.4 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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
AWSTemplateFormatVersion: "2010-09-09"
Parameters:
TaskManagerAppCognitoArn:
Description: Cognito Arn
Type: String
Resources:
AppsyncDynamoDBRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- appsync.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: CreateTaskPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:DeleteItem
- dynamodb:UpdateItem
- dynamodb:Query
- dynamodb:Scan
- dynamodb:BatchGetItem
- dynamodb:BatchWriteItem
Resource: '*'
TaskManagerApi:
Type: AWS::ApiGateway::RestApi
Properties:
Name: TaskManagerapp-API
TaskManagerApiAuthorizer:
Type: AWS::ApiGateway::Authorizer
Properties:
Name: TaskManagerApiAuth
ProviderARNs:
- !Ref TaskManagerAppCognitoArn
IdentitySource: method.request.header.Auth
RestApiId: !Ref TaskManagerApi
Type: COGNITO_USER_POOLS
TaskManagerApiCreateTaskResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId: !GetAtt TaskManagerApi.RootResourceId
PathPart: createtask
RestApiId: !Ref TaskManagerApi
TaskManagerApiGetUserTasksResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId: !GetAtt TaskManagerApi.RootResourceId
PathPart: getusertasks
RestApiId: !Ref TaskManagerApi
TaskManagerApiDeleteTaskResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId: !GetAtt TaskManagerApi.RootResourceId
PathPart: deletetask
RestApiId: !Ref TaskManagerApi
TaskManagetApiGetUserTasksMethod:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: COGNITO_USER_POOLS
AuthorizerId: !Ref TaskManagerApiAuthorizer
HttpMethod: GET
ResourceId: !Ref TaskManagerApiGetUserTasksResource
RestApiId: !Ref TaskManagerApi
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri: !Sub >-
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${GetUserTasks.Arn}/invocations
TaskManagerApiCreateTaskMethod:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: COGNITO_USER_POOLS
AuthorizerId: !Ref TaskManagerApiAuthorizer
HttpMethod: POST
ResourceId: !Ref TaskManagerApiCreateTaskResource
RestApiId: !Ref TaskManagerApi
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri: !Sub >-
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${CreateTask.Arn}/invocations
TaskManagerApiDeleteTaskMethod:
Type: AWS::ApiGateway::Method
Properties:
AuthorizationType: COGNITO_USER_POOLS
AuthorizerId: !Ref TaskManagerApiAuthorizer
HttpMethod: POST
ResourceId: !Ref TaskManagerApiDeleteTaskResource
RestApiId: !Ref TaskManagerApi
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri: !Sub >-
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${DeleteTask.Arn}/invocations
TaskManagerApiGetMethodDeploy:
Type: AWS::ApiGateway::Deployment
Properties:
RestApiId: !Ref TaskManagerApi
StageName: PROD
TaskManagerApiStage:
Type: AWS::ApiGateway::Stage
Properties:
DeploymentId: !Ref TaskManagerApiGetMethodDeploy
RestApiId: !Ref TaskManagerApi
TaskManagerTasks:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
-
AttributeName: User
AttributeType: S
-
AttributeName: TaskName
AttributeType: S
KeySchema:
-
AttributeName: User
KeyType: HASH
-
AttributeName: TaskName
KeyType: RANGE
BillingMode: PROVISIONED
ProvisionedThroughput:
ReadCapacityUnits: "1"
WriteCapacityUnits: "1"
TableName: TaskManagerApp-Tasks
TaskSyncApi:
Type: AWS::AppSync::GraphQLApi
Properties:
AuthenticationType: AMAZON_COGNITO_USER_POOLS
Name: TaskManagerAppApi
UserPoolConfig:
AwsRegion: us-east-1
DefaultAction: ALLOW
UserPoolId: us-east-1_EGoblayO8
TaskSyncSchema:
Type: AWS::AppSync::GraphQLSchema
Properties:
ApiId: !GetAtt TaskSyncApi.ApiId
Definition: |
type Task {
User: ID!
DateCreated: String
TaskName: String
TaskRunTime: String
}
type Query {
getTask(User: ID!): Task
}
type Schema {
query: Query
}
TaskManagerAppDataSource:
Type: AWS::AppSync::DataSource
Properties:
ApiId: !GetAtt TaskSyncApi.ApiId
DynamoDBConfig:
AwsRegion: us-east-1
TableName: TaskManagerApp-Tasks
Name: TaskManagerApp_Resolver
ServiceRoleArn: !GetAtt AppsyncDynamoDBRole.Arn
Type: AMAZON_DYNAMODB
TaskManagerAppGetTaskResolver:
Type: AWS::AppSync::Resolver
Properties:
ApiId: !GetAtt TaskSyncApi.ApiId
DataSourceName: !GetAtt TaskManagerAppDataSource.Name
FieldName: getTask
TypeName: Query
RequestMappingTemplate: |
{
"version": "2017-02-28",
"operation": "GetItem",
"key": {
"User": $util.dynamodb.toDynamoDBJson($ctx.args.User),
"DateCreated": $util.dynamodb.toDynamoDBJson($ctx.args.DateCreated),
}
}
ResponseMappingTemplate: "$util.toJson($ctx.result)"
CreateTask:
Type: AWS::Lambda::Function
Properties:
FunctionName: TaskManagerApp-CreateTask
Handler: createTask
MemorySize: 128
Runtime: go1.x
Code:
S3Bucket: taskmanagerapp-deploybucket
S3Key: createTask.zip
Role: !GetAtt CreateTaskRole.Arn
CreateTaskRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: CreateTaskPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- dynamodb:PutItem
Resource: !GetAtt TaskManagerTasks.Arn
- PolicyName: CreateTaskLogPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: "*"
- PolicyName: CreateTaskStateMachinePolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- states:StartExecution
Resource: "*"
GetUserTasks:
Type: AWS::Lambda::Function
Properties:
FunctionName: TaskManagerApp-GetUserTasks
Handler: getUserTasks
MemorySize: 128
Runtime: go1.x
Code:
S3Bucket: taskmanagerapp-deploybucket
S3Key: getUserTasks.zip
Role: !GetAtt GetUserTaskRole.Arn
GetUserTaskRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: GetUserTasksPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- dynamodb:Query
Resource: !GetAtt TaskManagerTasks.Arn
- PolicyName: GetUserTasksLogPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: "*"
DeleteTask:
Type: AWS::Lambda::Function
Properties:
FunctionName: TaskManagerApp-DeleteTask
Handler: deleteUserTask
MemorySize: 128
Runtime: go1.x
Code:
S3Bucket: taskmanagerapp-deploybucket
S3Key: deleteUserTask.zip
Role: !GetAtt DeleteTaskRole.Arn
DeleteTaskRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: DeleteTaskPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- dynamodb:DeleteItem
Resource: !GetAtt TaskManagerTasks.Arn
- PolicyName: DeleteTaskLogPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: "*"
UpdateTaskStatus:
Type: AWS::Lambda::Function
Properties:
FunctionName: TaskManagerApp-UpdateTask
Handler: updateTaskStatus
MemorySize: 128
Runtime: go1.x
Code:
S3Bucket: taskmanagerapp-deploybucket
S3Key: updateTaskStatus.zip
Role: !GetAtt UpdateTaskStatusRole.Arn
UpdateTaskStatusRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: UpdateTaskStatusPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- dynamodb:UpdateItem
Resource: !GetAtt TaskManagerTasks.Arn
- PolicyName: UpdateTaskStatusLogPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: "*"
TaskManagerStateMachine:
Type: AWS::StepFunctions::StateMachine
Properties:
DefinitionS3Location:
Bucket: taskmanagerapp-deploybucket
Key: taskmanager_statemachine.json
RoleArn: !GetAtt TaskManagerStepRole.Arn
StateMachineName: TaskManager-StateMachine
TaskManagerStepRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- states.amazonaws.com
Action:
- 'sts:AssumeRole'
Path: /
Policies:
- PolicyName: StateMachineInvokeLambdaPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource: !GetAtt UpdateTaskStatus.Arn
- PolicyName: GetStateMachinePolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- s3:GetObject
Resource: "*"
- PolicyName: StepTaskLogPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: "*"