-
Notifications
You must be signed in to change notification settings - Fork 37
/
cfn-eventsProcessor.yml
939 lines (883 loc) · 31.8 KB
/
cfn-eventsProcessor.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
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
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
---
#-----------------------------------------------------------------------------------------------------------------------
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
# with the License. A copy of the License is located at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
# and limitations under the License.
#-----------------------------------------------------------------------------------------------------------------------
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: CDF Events Processor Service
Globals:
Api:
OpenApiVersion: 3.0.1
Parameters:
ApplicationConfigurationOverride:
Description: This allows you to override any application configuration. It should consists of a text-based content with a structure and syntax comprising key–value pairs for properties. Any configurations contained in this will override the configurations found and merged from the default .env files.
Type: String
Environment:
Description: Name of environment. Used to name the created resources.
Type: String
MinLength: 1
TemplateSnippetS3UriBase:
Description: |
S3 uri of directory where template snippets are stored for the account.
Type: String
MinLength: 1
AuthType:
Description: Authorization type to apply to the API gateway endpoints
Type: String
Default: None
AllowedValues:
- None
- Private
- Cognito
- LambdaRequest
- LambdaToken
- ApiKey
- IAM
MinLength: 1
ApiGatewayDefinitionTemplate:
Description: |
Name of the API Gateway Cloudformation definition along with the authorization method to use. Use one of the provided
templates to implement no auth, private, api key, lambda request, lamdba token, or Cognito auth, or modify one to meet your own
authentization requirements. The template must exist within the provided TemplateSnippetS3UriBase location.
Type: String
MinLength: 1
VpcId:
Description: ID of VPC to deploy the API into. Only required if AuthType = 'Private'.
Type: String
CDFSecurityGroupId:
Description: ID of an existing CDF security group to deploy the API into. Only required if AuthType = 'Private'.
Type: String
PrivateSubNetIds:
Description: Comma delimited list of private subnetIds to deploy the API into. Only required if AuthType = 'Private'.
Type: CommaDelimitedList
PrivateApiGatewayVPCEndpoint:
Description: VPC endpoint. Only required if AuthType = 'Private'.
Type: String
CognitoUserPoolArn:
Description: Cognito user pool arn. Only required if AuthType is set to 'Cognito'.
Type: String
Default: 'N/A'
AuthorizerFunctionArn:
Description: Lambda authorizer function arn. Only required if AuthType is set to 'LambdaRequest' or 'LambdaToken'.
Type: String
Default: 'N/A'
DAXInstanceType:
Type: String
Default: dax.t2.medium
AllowedPattern: "^dax\\.[tr]\\d+[a-z0-9]*\\.[a-z0-9]*$"
Description: >
The instance type for the DynamoDB DAX instance. The list of available instance types for your region can be found here:
https://aws.amazon.com/dynamodb/pricing/
ConstraintDescription: Must be a valid DAX instance type.
CustomResourceLambdaArn:
Description: Custom resource lambda arn
Type: String
MinLength: 1
KmsKeyId:
Description: The KMS key ID used to encrypt DynamoDB.
Type: String
ItemCacheTTL:
Type: Number
Description: TTL default value for DAX Item Cache.
Default: 60000
QueryCacheTTL:
Type: Number
Description: TTL default value for DAX Query Cache.
Default: 60000
EnableApiGatewayAccessLogs:
Description: Enales API gateway Access Logging, defaults to false if not specified.
Type: String
Default: 'false'
AllowedValues:
- 'true'
- 'false'
MinLength: 1
CorsOrigin:
Description: Sets the Access-Control-Allow-Origin response header to indicate whether the response can be shared with requesting code from the given origin.
Type: String
Default: ''
CustomDomainBasePath:
Description: Specifiy domain base path if configured with a custom domain
Type: String
Default: ''
LoggingLevel:
Description: Application logging level
Type: String
Default: info
AllowedValues:
- error
- warn
- info
- debug
- silly
Conditions:
DeployInVPC: !Not [!Equals [!Ref VpcId, 'N/A']]
DeployWithLambdaAuth:
!Or [!Equals [!Ref AuthType, 'LambdaRequest'], !Equals [!Ref AuthType, 'LambdaToken']]
KmsKeyIdProvided: !Not [!Equals [!Ref KmsKeyId, '']]
EnableApiGatewayAccessLogs: !Equals [!Ref EnableApiGatewayAccessLogs, 'true']
CorsOriginProvided: !Not [!Equals [!Ref CorsOrigin, '']]
CustomDomainBasePathProvided: !Not [!Equals [!Ref CustomDomainBasePath, '']]
LoggingLevelProvided: !Not [!Equals [!Ref LoggingLevel, '']]
Resources:
ApiGatewayApi:
'Fn::Transform':
Name: 'AWS::Include'
Parameters:
Location: !Sub '${TemplateSnippetS3UriBase}${ApiGatewayDefinitionTemplate}'
DependsOn:
- RESTLambdaFunction
ApiGatewayAuthorizerInvokeRole:
Condition: DeployWithLambdaAuth
'Fn::Transform':
Name: 'AWS::Include'
Parameters:
Location: !Sub '${TemplateSnippetS3UriBase}cfn-role-lambdaRequestAuthInvokerRole.yaml'
DependsOn:
- RESTLambdaFunction
ApiGatewayAccessLogGroup:
Condition: EnableApiGatewayAccessLogs
Type: 'AWS::Logs::LogGroup'
Properties:
LogGroupName: !Sub 'cdf-eventsprocessor-apigatewayaccesslogs-${Environment}'
KmsPolicy:
Type: AWS::IAM::ManagedPolicy
Condition: KmsKeyIdProvided
Properties:
Description: 'cdf-events-processor policy for accessing KMS'
Path: '/cdf/events-processor/'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 'kms:Decrypt'
Effect: Allow
Resource: !Sub 'arn:aws:kms:${AWS::Region}:${AWS::AccountId}:key/${KmsKeyId}'
ApplicationPolicies:
Type: 'AWS::IAM::ManagedPolicy'
Metadata:
cfn_nag:
rules_to_suppress:
- id: W13
reason: 'sns access to manage topics, subscriptions'
Properties:
Description: 'cdf-events-processor application policies'
Path: '/'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: 'iampassrole'
Action:
- 'iam:PassRole'
Effect: Allow
Resource: !Sub 'arn:aws:iam::${AWS::AccountId}:role/cdf-events-*'
- Sid: 'dynamodbStreams'
Action:
- dynamodb:DescribeStream
- dynamodb:DescribeTable
- dynamodb:GetRecords
- dynamodb:GetShardIterator
- dynamodb:ListStreams
- dynamodb:UpdateTable
Effect: Allow
# As the events-processor can enable streams from any table, we need to leave this open
Resource: '*'
- Sid: 'dynamodb'
Action:
- dynamodb:BatchGetItem
- dynamodb:BatchWriteItem
- dynamodb:PutItem
- dynamodb:Query
- dynamodb:GetItem
- dynamodb:DeleteItem
- dynamodb:UpdateItem
Effect: Allow
Resource:
- !GetAtt EventConfigTable.Arn
- 'Fn::Join':
- '/'
- - !GetAtt EventConfigTable.Arn
- 'index/*'
- !GetAtt EventNotificationsTable.Arn
- 'Fn::Join':
- '/'
- - !GetAtt EventNotificationsTable.Arn
- 'index/*'
- !If
- DeployInVPC
- Sid: 'DAX'
Action:
- 'dax:BatchGetItem'
- 'dax:BatchWriteItem'
- 'dax:ConditionCheckItem'
- 'dax:DeleteItem'
- 'dax:PutItem'
- 'dax:GetItem'
- 'dax:Query'
- 'dax:Scan'
- 'dax:UpdateItem'
Effect: Allow
Resource: !GetAtt DAXCluster.Arn
- !Ref 'AWS::NoValue'
- Sid: 'lambda'
Action:
- 'lambda:AddPermission'
- 'lambda:CreateEventSourceMapping'
- 'lambda:DeleteEventSourceMapping'
- 'lambda:ListEventSourceMappings'
- 'lambda:RemovePermission'
Effect: Allow
Resource: '*'
- Sid: 'snsTopics'
Action:
- 'sns:CreateTopic'
- 'sns:DeleteTopic'
- 'sns:GetTopicAttributes'
- 'sns:ListSubscriptionsByTopic'
- 'sns:Subscribe'
Effect: Allow
Resource:
- !Sub 'arn:aws:sns:${AWS::Region}:${AWS::AccountId}:cdf-events-*'
- Sid: 'snsAll'
Action:
- 'sns:Unsubscribe'
- 'sns:CreatePlatformEndpoint'
- 'sns:GetEndpointAttributes'
Effect: Allow
Resource: '*'
- Sid: 'iot'
Action:
- 'iot:CreateTopicRule'
- 'iot:DeleteTopicRule'
Effect: Allow
Resource:
- !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:rule/cdfEvents_*'
DynamoDBStreamLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- iot.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- !Ref ApplicationPolicies
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
- arn:aws:iam::aws:policy/AWSLambdaExecute
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole
DependsOn:
- ApplicationPolicies
- KmsPolicy
DynamoDBStreamLambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub 'cdf-eventsprocessor-ddbStream-${Environment}'
CodeUri: ../bundle.zip
Handler: lambda_proxy_ddbstream.handler
MemorySize: 512
Role: !GetAtt DynamoDBStreamLambdaExecutionRole.Arn
Runtime: nodejs18.x
Timeout: 30
Environment:
Variables:
APP_CONFIG_DIR: 'config'
APP_CONFIG: !Ref ApplicationConfigurationOverride
AWS_ACCOUNTID: !Ref AWS::AccountId
AWS_DYNAMODB_TABLES_EVENTCONFIG_NAME: !Ref EventConfigTable
AWS_DYNAMODB_TABLES_EVENTNOTIFICATIONS_NAME: !Ref EventNotificationsTable
AWS_IOT_ENDPOINT: !GetAtt IotEndpoint.address
AWS_LAMBDA_DYNAMODBSTREAM_NAME: !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:cdf-eventsprocessor-ddbStream-${Environment}'
AWS_LAMBDA_LAMBDAINVOKE_ARN: !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:cdf-eventsprocessor-invoke-${Environment}'
EVENTSPROCESSOR_AWS_SQS_ASYNCPROCESSING: !Ref AsyncProcessingQueue
AWS_DYNAMODB_DAX_ENDPOINTS:
!If [DeployInVPC, !GetAtt DAXCluster.ClusterDiscoveryEndpoint, !Ref 'AWS::NoValue']
CORS_ORIGIN: !If [CorsOriginProvided, !Ref CorsOrigin, !Ref AWS::NoValue]
CUSTOMDOMAIN_BASEPATH:
!If [CustomDomainBasePathProvided, !Ref CustomDomainBasePath, !Ref AWS::NoValue]
LOGGING_LEVEL: !If [LoggingLevelProvided, !Ref LoggingLevel, !Ref AWS::NoValue]
Tracing: Active
LambdaInvokeExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- iot.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- !Ref ApplicationPolicies
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
- arn:aws:iam::aws:policy/AWSLambdaExecute
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole
DependsOn:
- ApplicationPolicies
- KmsPolicy
RESTLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- iot.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- !Ref ApplicationPolicies
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
- arn:aws:iam::aws:policy/AWSLambdaExecute
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole
DependsOn:
- ApplicationPolicies
- KmsPolicy
LambdaInvokeLambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub 'cdf-eventsprocessor-invoke-${Environment}'
CodeUri: ../bundle.zip
Handler: lambda_proxy_invoke.handler
MemorySize: 512
Role: !GetAtt LambdaInvokeExecutionRole.Arn
Runtime: nodejs18.x
Timeout: 30
Environment:
Variables:
APP_CONFIG_DIR: 'config'
APP_CONFIG: !Ref ApplicationConfigurationOverride
AWS_ACCOUNTID: !Ref AWS::AccountId
AWS_DYNAMODB_TABLES_EVENTCONFIG_NAME: !Ref EventConfigTable
AWS_DYNAMODB_TABLES_EVENTNOTIFICATIONS_NAME: !Ref EventNotificationsTable
AWS_IOT_ENDPOINT: !GetAtt IotEndpoint.address
AWS_LAMBDA_DYNAMODBSTREAM_NAME: !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:cdf-eventsprocessor-ddbStream-${Environment}'
AWS_LAMBDA_LAMBDAINVOKE_ARN: !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:cdf-eventsprocessor-invoke-${Environment}'
EVENTSPROCESSOR_AWS_SQS_ASYNCPROCESSING: !Ref AsyncProcessingQueue
AWS_DYNAMODB_DAX_ENDPOINTS:
!If [DeployInVPC, !GetAtt DAXCluster.ClusterDiscoveryEndpoint, !Ref 'AWS::NoValue']
CORS_ORIGIN: !If [CorsOriginProvided, !Ref CorsOrigin, !Ref AWS::NoValue]
CUSTOMDOMAIN_BASEPATH:
!If [CustomDomainBasePathProvided, !Ref CustomDomainBasePath, !Ref AWS::NoValue]
LOGGING_LEVEL: !If [LoggingLevelProvided, !Ref LoggingLevel, !Ref AWS::NoValue]
VpcConfig:
Fn::If:
- DeployInVPC
- SubnetIds: !Ref PrivateSubNetIds
SecurityGroupIds:
- !Ref CDFSecurityGroupId
- Ref: AWS::NoValue
Tracing: Active
RESTLambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub 'cdf-eventsprocessor-rest-${Environment}'
CodeUri: ../bundle.zip
Handler: lambda_proxy_restapi.handler
MemorySize: 512
Role: !GetAtt RESTLambdaExecutionRole.Arn
Runtime: nodejs18.x
Timeout: 30
Environment:
Variables:
APP_CONFIG_DIR: 'config'
APP_CONFIG: !Ref ApplicationConfigurationOverride
AWS_ACCOUNTID: !Ref AWS::AccountId
AWS_DYNAMODB_TABLES_EVENTCONFIG_NAME: !Ref EventConfigTable
AWS_DYNAMODB_TABLES_EVENTNOTIFICATIONS_NAME: !Ref EventNotificationsTable
AWS_IOT_ENDPOINT: !GetAtt IotEndpoint.address
AWS_LAMBDA_DYNAMODBSTREAM_NAME: !Ref DynamoDBStreamLambdaFunction
AWS_LAMBDA_LAMBDAINVOKE_ARN: !GetAtt LambdaInvokeLambdaFunction.Arn
EVENTSPROCESSOR_AWS_SQS_ASYNCPROCESSING: !Ref AsyncProcessingQueue
AWS_DYNAMODB_DAX_ENDPOINTS:
!If [DeployInVPC, !GetAtt DAXCluster.ClusterDiscoveryEndpoint, !Ref 'AWS::NoValue']
CORS_ORIGIN: !If [CorsOriginProvided, !Ref CorsOrigin, !Ref AWS::NoValue]
CUSTOMDOMAIN_BASEPATH:
!If [CustomDomainBasePathProvided, !Ref CustomDomainBasePath, !Ref AWS::NoValue]
LOGGING_LEVEL: !If [LoggingLevelProvided, !Ref LoggingLevel, !Ref AWS::NoValue]
Tracing: Active
VpcConfig:
Fn::If:
- DeployInVPC
- SubnetIds: !Ref PrivateSubNetIds
SecurityGroupIds:
- !Ref CDFSecurityGroupId
- Ref: AWS::NoValue
Events:
ProxyApiRoot:
Type: Api
Properties:
RestApiId: !Ref ApiGatewayApi
Path: /
Method: ANY
ProxyApiGreedy:
Type: Api
Properties:
RestApiId: !Ref ApiGatewayApi
Path: /{proxy+}
Method: ANY
AsyncProcessingLambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- iot.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- !Ref ApplicationPolicies
- arn:aws:iam::aws:policy/AWSLambdaExecute
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole
Policies:
- PolicyName: app_policies
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: sqs
Action:
- sqs:ChangeMessageVisibility
- sqs:DeleteMessage
- sqs:GetQueueAttributes
- sqs:GetQueueUrl
- sqs:ReceiveMessage
- sqs:SendMessage
Effect: Allow
Resource:
- !GetAtt AsyncProcessingQueue.Arn
- !GetAtt DlqQueue.Arn
DependsOn:
- ApplicationPolicies
- KmsPolicy
AsyncProcessingLambdaFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: ../bundle.zip
Handler: lambda_proxy_sqs.handler
MemorySize: 512
Role: !GetAtt AsyncProcessingLambdaRole.Arn
Runtime: nodejs18.x
Timeout: 900
Environment:
Variables:
APP_CONFIG_DIR: 'config'
APP_CONFIG: !Ref ApplicationConfigurationOverride
AWS_ACCOUNTID: !Ref AWS::AccountId
AWS_DYNAMODB_TABLES_EVENTCONFIG_NAME: !Ref EventConfigTable
AWS_DYNAMODB_TABLES_EVENTNOTIFICATIONS_NAME: !Ref EventNotificationsTable
AWS_IOT_ENDPOINT: !GetAtt IotEndpoint.address
AWS_LAMBDA_DYNAMODBSTREAM_NAME: !Ref DynamoDBStreamLambdaFunction
AWS_LAMBDA_LAMBDAINVOKE_ARN: !GetAtt LambdaInvokeLambdaFunction.Arn
EVENTSPROCESSOR_AWS_SQS_ASYNCPROCESSING: !Ref AsyncProcessingQueue
AWS_DYNAMODB_DAX_ENDPOINTS:
!If [DeployInVPC, !GetAtt DAXCluster.ClusterDiscoveryEndpoint, !Ref 'AWS::NoValue']
CORS_ORIGIN: !If [CorsOriginProvided, !Ref CorsOrigin, !Ref AWS::NoValue]
CUSTOMDOMAIN_BASEPATH:
!If [CustomDomainBasePathProvided, !Ref CustomDomainBasePath, !Ref AWS::NoValue]
LOGGING_LEVEL: !If [LoggingLevelProvided, !Ref LoggingLevel, !Ref AWS::NoValue]
Tracing: Active
VpcConfig:
Fn::If:
- DeployInVPC
- SubnetIds: !Ref PrivateSubNetIds
SecurityGroupIds:
- !Ref CDFSecurityGroupId
- Ref: AWS::NoValue
Events:
AsyncProcessingQueue:
Type: SQS
Properties:
Queue: !GetAtt AsyncProcessingQueue.Arn
BatchSize: 5
EventConfigTable:
Type: AWS::DynamoDB::Table
Metadata:
cfn_nag:
rules_to_suppress:
- id: W28
reason: 'safely naming this resources to be unique by environment'
- id: W73
reason: 'Can be decided by the customer, to specify the billing mode'
Properties:
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
SSESpecification:
Fn::If:
- KmsKeyIdProvided
- KMSMasterKeyId: !Ref KmsKeyId
SSEEnabled: true
SSEType: KMS
- Ref: AWS::NoValue
TableName: !Sub 'cdf-eventConfig-${Environment}'
KeySchema:
- AttributeName: pk
KeyType: HASH
- AttributeName: sk
KeyType: RANGE
AttributeDefinitions:
- AttributeName: pk
AttributeType: S
- AttributeName: sk
AttributeType: S
- AttributeName: gsi1Sort
AttributeType: S
- AttributeName: gsi2Key
AttributeType: S
- AttributeName: gsi2Sort
AttributeType: S
ProvisionedThroughput:
ReadCapacityUnits: '5'
WriteCapacityUnits: '5'
GlobalSecondaryIndexes:
- IndexName: 'sk-gsi1Sort-index'
KeySchema:
- AttributeName: sk
KeyType: HASH
- AttributeName: gsi1Sort
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
- ### NOTE: this GSI is longer used, replaced by 'gsi2Key-gsi2Sort-index', but has to remain for backwards compatibility
### as a cloudformation update may only contain 1 GSI add/delete/change per cloudformation update (cannot handle the deletion
### of this one at the same time as the creation of the other. )
IndexName: 'gsi2Key-sk-index'
KeySchema:
- AttributeName: 'gsi2Key'
KeyType: 'HASH'
- AttributeName: 'sk'
KeyType: 'RANGE'
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: '5'
WriteCapacityUnits: '5'
- IndexName: 'gsi2Key-gsi2Sort-index'
KeySchema:
- AttributeName: gsi2Key
KeyType: HASH
- AttributeName: gsi2Sort
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
EventNotificationsTable:
Type: AWS::DynamoDB::Table
Metadata:
cfn_nag:
rules_to_suppress:
- id: W28
reason: 'safely naming this resources to be unique by environment'
- id: W73
reason: 'Can be decided by the customer, to specify the billing mode'
Properties:
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
SSESpecification:
Fn::If:
- KmsKeyIdProvided
- KMSMasterKeyId: !Ref KmsKeyId
SSEEnabled: true
SSEType: KMS
- Ref: AWS::NoValue
TableName: !Sub 'cdf-eventNotifications-${Environment}'
KeySchema:
- AttributeName: pk
KeyType: HASH
- AttributeName: time
KeyType: RANGE
AttributeDefinitions:
- AttributeName: pk
AttributeType: S
- AttributeName: time
AttributeType: S
- AttributeName: userId
AttributeType: S
- AttributeName: gsi2Sort
AttributeType: S
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
GlobalSecondaryIndexes:
- IndexName: 'userId-gsi2Sort-index'
KeySchema:
- AttributeName: userId
KeyType: HASH
- AttributeName: gsi2Sort
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
- IndexName: 'userId-time-index'
KeySchema:
- AttributeName: userId
KeyType: HASH
- AttributeName: time
KeyType: RANGE
Projection:
ProjectionType: ALL
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
StreamSpecification:
StreamViewType: NEW_IMAGE
DAXSecurityGroupIngress:
Condition: DeployInVPC
Type: AWS::EC2::SecurityGroupIngress
Properties:
GroupId: !Ref DAXSecurityGroup
IpProtocol: tcp
FromPort: 8111
ToPort: 8111
SourceSecurityGroupId: !Ref DAXSecurityGroup
DAXSecurityGroup:
Condition: DeployInVPC
Type: AWS::EC2::SecurityGroup
DependsOn:
- DAXSubnetGroup
Metadata:
cfn_nag:
rules_to_suppress:
- id: W5
reason: 'Relying on default egress'
- id: W29
reason: 'Relying on default egress port'
- id: W36
reason: 'Group Description provided'
Properties:
GroupDescription: DAX Security Group
VpcId: !Ref VpcId
SecurityGroupIngress:
# Allow CDF lambda to access the DAX clusters
- IpProtocol: tcp
FromPort: 8111
ToPort: 8111
SourceSecurityGroupId: !Ref CDFSecurityGroupId
SecurityGroupEgress:
- IpProtocol: tcp
FromPort: 80
ToPort: 80
CidrIp: 0.0.0.0/0
- IpProtocol: tcp
FromPort: 443
ToPort: 443
CidrIp: 0.0.0.0/0
DAXClusterParameterGroup:
Condition: DeployInVPC
Type: AWS::DAX::ParameterGroup
Properties:
ParameterGroupName: !Sub 'cdf-eventNotifications-${Environment}-parameter'
Description: !Sub 'parameter group for cdf-eventNotifications-${Environment}'
ParameterNameValues:
'query-ttl-millis': !Ref QueryCacheTTL
'record-ttl-millis': !Ref ItemCacheTTL
DAXCluster:
Condition: DeployInVPC
Type: AWS::DAX::Cluster
Properties:
Description: Event notifications cluster
IAMRoleARN: !GetAtt DAXServiceRole.Arn
NodeType: !Ref DAXInstanceType
ParameterGroupName: !Ref DAXClusterParameterGroup
SubnetGroupName:
!If [DeployInVPC, !Sub 'cdf-eventNotifications-${Environment}', !Ref 'AWS::NoValue']
SecurityGroupIds:
- !If [DeployInVPC, !Ref DAXSecurityGroup, !Ref 'AWS::NoValue']
ReplicationFactor: 1
SSESpecification:
SSEEnabled: 'true'
DependsOn:
- DAXServiceRole
DAXSubnetGroup:
Condition: DeployInVPC
Type: AWS::DAX::SubnetGroup
Properties:
Description: cdf-events-processor DAX subnet group
SubnetGroupName: !Sub 'cdf-eventNotifications-${Environment}'
SubnetIds: !Ref PrivateSubNetIds
DAXServiceRole:
Condition: DeployInVPC
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- dax.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonDynamoDBFullAccess
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
DependsOn:
- DAXPolicies
DAXPolicies:
Condition: DeployInVPC
Type: 'AWS::IAM::ManagedPolicy'
Properties:
Description: 'cdf-events-processor DAX policies'
Path: '/'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: dynamodb
Effect: Allow
Action:
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DescribeTable
Resource:
- !GetAtt EventConfigTable.Arn
- 'Fn::Join':
- '/'
- - !GetAtt EventConfigTable.Arn
- 'index/*'
IotEndpoint:
Type: Custom::IotEndpoint
Version: 1.0
Properties:
ServiceToken: !Ref CustomResourceLambdaArn
AsyncProcessingQueue:
Type: AWS::SQS::Queue
Properties:
MessageRetentionPeriod: 604800
VisibilityTimeout: 960
RedrivePolicy:
deadLetterTargetArn: !GetAtt DlqQueue.Arn
maxReceiveCount: 10
KmsMasterKeyId:
Fn::If:
- KmsKeyIdProvided
- Ref: KmsKeyId
- Ref: AWS::NoValue
DlqQueue:
Type: AWS::SQS::Queue
Properties:
MessageRetentionPeriod: 1209600
EventNotificationsTableSsmParameter:
Type: 'AWS::SSM::Parameter'
Properties:
Description: Event Notifications database table
Name: !Sub '/cdf/events-processor/${Environment}/EventNotificationsTable'
Type: String
Value: !Ref EventNotificationsTable
EventNotificationsTableArnSsmParameter:
Type: 'AWS::SSM::Parameter'
Properties:
Description: Event Notifications database table arn
Name: !Sub '/cdf/events-processor/${Environment}/EventNotificationsTableArn'
Type: String
Value: !GetAtt EventNotificationsTable.Arn
EventNotificationsStreamArnSsmParameter:
Type: 'AWS::SSM::Parameter'
Properties:
Description: Event Notifications database table stream
Name: !Sub '/cdf/events-processor/${Environment}/EventNotificationsStreamArn'
Type: String
Value: !GetAtt EventNotificationsTable.StreamArn
EventConfigTableSsmParameter:
Type: 'AWS::SSM::Parameter'
Properties:
Description: Event Config database table
Name: !Sub '/cdf/events-processor/${Environment}/EventConfigTable'
Type: String
Value: !Ref EventConfigTable
EventConfigTableArnSsmParameter:
Type: 'AWS::SSM::Parameter'
Properties:
Description: Event Config database table Arn
Name: !Sub '/cdf/events-processor/${Environment}/EventConfigTableArn'
Type: String
Value: !GetAtt EventConfigTable.Arn
Outputs:
RestApiFunctionName:
Description: Events REST API lambda function name
Value: !Ref RESTLambdaFunction
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-restApiFunctionName'
ApiGatewayUrl:
Description: Events REST API URL
Value: !Sub 'https://${ApiGatewayApi}.execute-api.${AWS::Region}.amazonaws.com/Prod'
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-apigatewayurl'
ApiGatewayHost:
Description: Events REST API host
Value: !Sub '${ApiGatewayApi}.execute-api.${AWS::Region}.amazonaws.com'
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-apigatewayhost'
DAXClusterArn:
Condition: DeployInVPC
Description: Arn of DAX Cluster
Value: !GetAtt DAXCluster.Arn
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-DAXClusterArn'
DAXClusterEndpoint:
Condition: DeployInVPC
Description: DAX Cliuter EndpointConfiguration
Value: !GetAtt DAXCluster.ClusterDiscoveryEndpoint
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-DAXClusterEndpoint'
EventNotificationsTable:
Description: Event Notifications database table
Value: !Ref EventNotificationsTable
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-EventNotificationsTable'
EventNotificationsTableArn:
Description: Event Notifications database table arn
Value: !GetAtt EventNotificationsTable.Arn
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-EventNotificationsTableArn'
EventNotificationsStreamArn:
Description: Event Notifications database table stream
Value: !GetAtt EventNotificationsTable.StreamArn
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-EventNotificationsStreamArn'
EventConfigTable:
Description: Event Config database table
Value: !Ref EventConfigTable
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-EventConfigTable'
EventConfigTableArn:
Description: Event Config database table Arn
Value: !GetAtt EventConfigTable.Arn
Export:
Name: !Sub 'cdf-eventsProcessor-${Environment}-EventConfigTableArn'