-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.yaml
592 lines (547 loc) · 17.2 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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
WebSocketAdaptor
SAM Template for aws-websockets-adaptor that has the DynamoDB table and Lambda
functions needed to demonstrate the Websocket protocol on API Gateway.
Parameters:
TableName:
Type: String
Default: 'websocket_adaptor_connections'
Description: (Required) The name of the new DynamoDB to store connection identifiers for each connected clients. Minimum 3 characters
MinLength: 3
MaxLength: 50
AllowedPattern: ^[A-Za-z_]+$
ConstraintDescription: 'Required. Can be characters and underscore only. No numbers or special characters allowed.'
CodeBucketName:
Type: String
Default: 'aws-websockets-adaptor'
Description: (Required) The name of the S3 bucket where the Lambda function code is stored. Minimum 3 characters
JWTSecret:
Type: String
Default: 'fdre4t5y6u7i8o9p0o9i8u7y6t5r4e3w2q1'
Description: (Required) The secret used to sign the JWT token. Minimum 30 characters
Resources:
WebSocketAdaptor:
Type: AWS::ApiGatewayV2::Api
Properties:
Name: aws-websockets-adaptor
ProtocolType: WEBSOCKET
RouteSelectionExpression: "$request.body.action"
Authorizer:
Type: 'AWS::ApiGatewayV2::Authorizer'
Properties:
Name: WebSocketAdaptorLambdaAuthorizer
ApiId: !Ref WebSocketAdaptor
AuthorizerType: REQUEST
AuthorizerUri:
Fn::Sub:
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${AuthorizerFunction.Arn}/invocations
IdentitySource:
- route.request.querystring.Authorization
ConnectRoute:
Type: AWS::ApiGatewayV2::Route
Properties:
ApiId: !Ref WebSocketAdaptor
RouteKey: $connect
AuthorizationType: CUSTOM
AuthorizerId: !Ref Authorizer
OperationName: ConnectRoute
Target: !Join
- '/'
- - 'integrations'
- !Ref ConnectInteg
ConnectInteg:
Type: AWS::ApiGatewayV2::Integration
Properties:
ApiId: !Ref WebSocketAdaptor
Description: Connect Integration
IntegrationType: AWS_PROXY
IntegrationUri:
Fn::Sub:
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${OnConnectFunction.Arn}/invocations
DisconnectRoute:
Type: AWS::ApiGatewayV2::Route
Properties:
ApiId: !Ref WebSocketAdaptor
RouteKey: $disconnect
AuthorizationType: NONE
OperationName: DisconnectRoute
Target: !Join
- '/'
- - 'integrations'
- !Ref DisconnectInteg
DisconnectInteg:
Type: AWS::ApiGatewayV2::Integration
Properties:
ApiId: !Ref WebSocketAdaptor
Description: Disconnect Integration
IntegrationType: AWS_PROXY
IntegrationUri:
Fn::Sub:
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${OnDisconnectFunction.Arn}/invocations
Deployment:
Type: AWS::ApiGatewayV2::Deployment
DependsOn:
- ConnectRoute
- DisconnectRoute
Properties:
ApiId: !Ref WebSocketAdaptor
Stage:
Type: AWS::ApiGatewayV2::Stage
Properties:
StageName: Prod
Description: Prod Stage
DeploymentId: !Ref Deployment
ApiId: !Ref WebSocketAdaptor
ConnectionsTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: "pk"
AttributeType: "S"
- AttributeName: "sk"
AttributeType: "S"
KeySchema:
- AttributeName: "pk"
KeyType: "HASH"
- AttributeName: "sk"
KeyType: "RANGE"
BillingMode:
PAY_PER_REQUEST
SSESpecification:
SSEEnabled: True
TableName: !Ref TableName
OnConnectFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: WebSocketAdaptorOnConnectFunction
CodeUri:
Bucket: !Ref CodeBucketName
Key: deploy.zip
Handler: Adapter::Adapter.Handler.OnConnectHandler::Handler
Role: !GetAtt OnConnectFunctionLambdaExecutionRole.Arn
MemorySize: 512
Timeout: 180
Runtime: dotnet8
Environment:
Variables:
TABLE_NAME: !Ref TableName
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref TableName
OnConnectPermission:
Type: AWS::Lambda::Permission
DependsOn:
- WebSocketAdaptor
Properties:
Action: lambda:InvokeFunction
FunctionName: !Ref OnConnectFunction
Principal: apigateway.amazonaws.com
OnConnectFunctionLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: allowLambdaLogs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:*
Resource: arn:aws:logs:*:*:*
- PolicyName: OnConnectDynamoDbPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:DeleteItem
- dynamodb:Query
- dynamodb:GetItem
Resource: !GetAtt ConnectionsTable.Arn
- PolicyName: OnConnectSNSPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- sns:*
Resource: arn:aws:sns:*:*:*
- PolicyName: allowParameterStore
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ssm:GetParameter
Resource: '*'
OnDisconnectFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: WebSocketAdaptorOnDisconnectFunction
CodeUri:
Bucket: !Ref CodeBucketName
Key: deploy.zip
Handler: Adapter::Adapter.Handler.OnDisconnectHandler::Handler
Role: !GetAtt OnDisconnectFunctionLambdaExecutionRole.Arn
MemorySize: 512
Timeout: 180
Runtime: dotnet8
Environment:
Variables:
TABLE_NAME: !Ref TableName
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref TableName
OnDisconnectPermission:
Type: AWS::Lambda::Permission
DependsOn:
- WebSocketAdaptor
Properties:
Action: lambda:InvokeFunction
FunctionName: !Ref OnDisconnectFunction
Principal: apigateway.amazonaws.com
OnDisconnectFunctionLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: allowLambdaLogs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:*
Resource: arn:aws:logs:*:*:*
- PolicyName: OnDisconnectDynamoDBPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:DeleteItem
- dynamodb:Query
- dynamodb:GetItem
- dynamodb:PutItem
Resource: !GetAtt ConnectionsTable.Arn
- PolicyName: OnDisconnectSNSPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- sns:*
Resource: arn:aws:sns:*:*:*
- PolicyName: allowParameterStore
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ssm:GetParameter
Resource: '*'
WebSocketAdapterEventBus:
Type: AWS::SNS::Topic
Properties:
TopicName: WebSocketAdapterEventBus
WebSocketAdapterEventBusParameter:
Type: AWS::SSM::Parameter
Properties:
Name: /WebSocketAdapter/EventBusEndpoint
Type: String
Value: !Ref WebSocketAdapterEventBus
Description: EventBusEndpoint
AuthorizerFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: WebSocketAdaptorAuthorizerFunction
CodeUri:
Bucket: !Ref CodeBucketName
Key: deploy.zip
Handler: Adapter::Adapter.Handler.AuthorizerHandler::Handler
Role: !GetAtt AuthorizerFunctionLambdaExecutionRole.Arn
MemorySize: 512
Timeout: 180
Runtime: dotnet8
Environment:
Variables:
TABLE_NAME: !Ref TableName
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref TableName
AuthorizerFunctionLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: allowLambdaLogs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:*
Resource: arn:aws:logs:*:*:*
- PolicyName: allowParameterStore
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- ssm:GetParameter
Resource: '*'
SendMessageFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: WebSocketAdaptorSendMessageFunction
CodeUri:
Bucket: !Ref CodeBucketName
Key: deploy.zip
Handler: Adapter::Adapter.Handler.SendMessageHandler::Handler
Role: !GetAtt SendMessageLambdaExecutionRole.Arn
MemorySize: 512
Timeout: 120
Runtime: dotnet8
Environment:
Variables:
TABLE_NAME: !Ref TableName
API_GATEWAY_ENDPOINT: !Sub 'https://${WebSocketAdaptor}.execute-api.${AWS::Region}.amazonaws.com/${Stage}'
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref TableName
- Statement:
- Effect: Allow
Action:
- 'execute-api:ManageConnections'
Resource:
- !Sub 'arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${WebSocketAdaptor}/*'
SendMessageLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: allowLambdaLogs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:*
Resource: arn:aws:logs:*:*:*
- PolicyName: allowSqs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- sqs:ReceiveMessage
- sqs:DeleteMessage
- sqs:GetQueueAttributes
- sqs:ChangeMessageVisibility
Resource: !GetAtt SendMessageSQS.Arn
- PolicyName: SendMessageDynamoDBPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:DeleteItem
- dynamodb:Query
- dynamodb:GetItem
- dynamodb:PutItem
Resource: !GetAtt ConnectionsTable.Arn
- PolicyName: ApiGatewayManageConnection
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'execute-api:ManageConnections'
Resource:
- !Sub 'arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${WebSocketAdaptor}/*'
SendMessageFunctionEventSourceMapping:
Type: AWS::Lambda::EventSourceMapping
Properties:
BatchSize: 10
Enabled: true
EventSourceArn: !GetAtt SendMessageSQS.Arn
FunctionName: !GetAtt SendMessageFunction.Arn
SendMessageSQS:
Type: 'AWS::SQS::Queue'
Properties:
QueueName: SendMessageQueue
DelaySeconds: 0
VisibilityTimeout: 120
RedrivePolicy:
deadLetterTargetArn: !GetAtt SendMessageSQSDLQ.Arn
maxReceiveCount: 3
SendMessageSQSDLQ:
Type: 'AWS::SQS::Queue'
Properties:
QueueName: SendMessageSQS_DLQ
DelaySeconds: 0
VisibilityTimeout: 120
JWTSecretParameter:
Type: AWS::SSM::Parameter
Properties:
Name: /WebSocketAdapter/JwtSecret
Type: String
Value: !Ref JWTSecret
Description: JWT Secret for authorizer
SendMessageQueueUrlParameter:
Type: AWS::SSM::Parameter
Properties:
Name: /WebSocketAdapter/SendMessageQueueUrl
Type: String
Value: !GetAtt SendMessageSQS.QueueUrl
Description: Message queue URL for SendMessage function
DependsOn:
- SendMessageSQS
WebSocketAdaptorRestApi:
Type: AWS::ApiGatewayV2::Api
Properties:
Name: aws-websockets-adaptor-rest-api
ProtocolType: HTTP
OnlineListFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: WebSocketAdaptorRestOnlineListFunction
CodeUri:
Bucket: !Ref CodeBucketName
Key: deploy.zip
Handler: Adapter::Adapter.Handler.RestApi.OnlineListHandler::Handler
Role: !GetAtt OnlineListFunctionLambdaExecutionRole.Arn
MemorySize: 512
Timeout: 180
Runtime: dotnet8
Environment:
Variables:
TABLE_NAME: !Ref TableName
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref TableName
OnlineListFunctionPermission:
Type: AWS::Lambda::Permission
DependsOn:
- WebSocketAdaptorRestApi
Properties:
Action: lambda:InvokeFunction
FunctionName: !Ref OnlineListFunction
Principal: apigateway.amazonaws.com
OnlineListFunctionLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: allowLambdaLogs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:*
Resource: arn:aws:logs:*:*:*
- PolicyName: IsOnlineFunctionDynamoDBPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:Query
- dynamodb:GetItem
- dynamodb:BatchGetItem
Resource: !GetAtt ConnectionsTable.Arn
OnlineListRoute:
Type: AWS::ApiGatewayV2::Route
Properties:
ApiId: !Ref WebSocketAdaptorRestApi
RouteKey: 'GET /user/online'
AuthorizationType: NONE
OperationName: OnlineListRoute
Target: !Join
- '/'
- - 'integrations'
- !Ref OnlineListRouteInteg
OnlineListRouteInteg:
Type: AWS::ApiGatewayV2::Integration
Properties:
ApiId: !Ref WebSocketAdaptorRestApi
PayloadFormatVersion: '2.0'
Description: OnlineListRouteInteg Integration
IntegrationType: AWS_PROXY
IntegrationUri:
Fn::Sub:
arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${OnlineListFunction.Arn}/invocations
WebSocketAdaptorRestApiDeployment:
Type: AWS::ApiGatewayV2::Deployment
DependsOn:
- DisconnectRoute
Properties:
ApiId: !Ref WebSocketAdaptorRestApi
WebSocketAdaptorRestApiStage:
Type: AWS::ApiGatewayV2::Stage
Properties:
StageName: Prod
Description: Prod Stage
DeploymentId: !Ref WebSocketAdaptorRestApiDeployment
ApiId: !Ref WebSocketAdaptorRestApi
Outputs:
ConnectionsTableArn:
Description: "Connections table ARN"
Value: !GetAtt ConnectionsTable.Arn
OnConnectFunctionArn:
Description: "OnConnect function ARN"
Value: !GetAtt OnConnectFunction.Arn
OnDisconnectFunctionArn:
Description: "OnDisconnect function ARN"
Value: !GetAtt OnDisconnectFunction.Arn
SendMessageFunctionArn:
Description: "SendMessage function ARN"
Value: !GetAtt SendMessageFunction.Arn
WebSocketURI:
Description: "The WSS Protocol URI to connect to"
Value: !Join [ '', [ 'wss://', !Ref WebSocketAdaptor, '.execute-api.',!Ref 'AWS::Region','.amazonaws.com/',!Ref 'Stage' ] ]