This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 161
/
serverless.yaml
1162 lines (1138 loc) · 43.3 KB
/
serverless.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
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
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
#
service: fhir-service
custom:
oldResourceTableName: 'resource-${self:custom.stage}'
resourceTableName: 'resource-db-${self:custom.stage}'
exportRequestTableName: 'export-request-${self:custom.stage}'
exportRequestTableJobStatusIndex: 'jobStatus-index'
stage: ${opt:stage, self:provider.stage}
region: ${opt:region, self:provider.region}
oauthRedirect: ${opt:oauthRedirect, 'http://localhost'}
config: ${file(serverless_config.json)}
useHapiValidator: ${opt:useHapiValidator, 'false'}
enableMultiTenancy: ${opt:enableMultiTenancy, 'false'}
enableSubscriptions: ${opt:enableSubscriptions, 'false'}
logLevel: ${opt:logLevel, 'error'}
enableESHardDelete: ${opt:enableESHardDelete, 'false'}
patientCompartmentFileV3: 'patientCompartmentSearchParams.3.0.2.json'
patientCompartmentFileV4: 'patientCompartmentSearchParams.4.0.1.json'
bundle:
packager: yarn
linting: false # We use our own linter
copyFiles: # Copy any additional files to the generated package
- from: 'bulkExport/glueScripts/export-script.py'
to: './bulkExport/glueScripts/export-script.py'
- from: 'bulkExport/schema/transitiveReferenceParams.json'
to: './bulkExport/schema/transitiveReferenceParams.json'
- from: 'bulkExport/schema/${self:custom.patientCompartmentFileV3}'
to: './bulkExport/schema/${self:custom.patientCompartmentFileV3}'
- from: 'bulkExport/schema/${self:custom.patientCompartmentFileV4}'
to: './bulkExport/schema/${self:custom.patientCompartmentFileV4}'
- from: 'compiledImplementationGuides'
to: './src/compiledImplementationGuides'
provider:
name: aws
region: us-west-2
stage: dev
runtime: nodejs14.x
architecture: x86_64
memorySize: 512
logRetentionInDays: 3653 # 10 years
stackTags:
FHIR_SERVICE: 'fhir-service-${self:custom.region}-${self:custom.stage}'
environment:
API_URL:
!Join ['', ['https://', !Ref ApiGatewayRestApi, !Sub '.execute-api.${AWS::Region}.amazonaws.com/', !Ref Stage]]
S3_KMS_KEY: !Ref S3KMSKey
RESOURCE_TABLE: '${self:custom.resourceTableName}'
EXPORT_REQUEST_TABLE: '${self:custom.exportRequestTableName}'
EXPORT_REQUEST_TABLE_JOB_STATUS_INDEX: '${self:custom.exportRequestTableJobStatusIndex}'
FHIR_BINARY_BUCKET: !Ref FHIRBinaryBucket
ELASTICSEARCH_DOMAIN_ENDPOINT: !Join ['', ['https://', !GetAtt ElasticSearchDomain.DomainEndpoint]]
OAUTH2_DOMAIN_ENDPOINT:
!Join ['', ['https://', !Ref UserPoolDomain, !Sub '.auth.${AWS::Region}.amazoncognito.com/oauth2']]
EXPORT_RESULTS_BUCKET: !Ref BulkExportResultsBucket
EXPORT_RESULTS_SIGNER_ROLE_ARN: !GetAtt ExportResultsSignerRole.Arn
CUSTOM_USER_AGENT: 'AwsSolution/SO0128/GH-v5.1.0'
VALIDATOR_LAMBDA_ALIAS: !If
- isUsingHapiValidator
- !ImportValue 'fhir-service-validator-lambda-${self:custom.stage}'
- !Ref AWS::NoValue
ENABLE_MULTI_TENANCY: !Ref EnableMultiTenancy
ENABLE_SUBSCRIPTIONS: !Ref EnableSubscriptions
LOG_LEVEL: '${self:custom.logLevel}'
AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1'
apiKeys:
- name: 'developer-key-${self:custom.stage}' # Full name must be known at package-time
description: Key for developer to access the FHIR Api
usagePlan:
throttle:
burstLimit: 100 # maximum API request rate limit over a time ranging from one to a few seconds
rateLimit: 50 # average requests per second over an extended period of time
logs:
restApi:
format: '{"authorizer.claims.sub":"$context.authorizer.claims.sub","error.message":"$context.error.message","extendedRequestId":"$context.extendedRequestId","httpMethod":"$context.httpMethod","identity.sourceIp":"$context.identity.sourceIp","integration.error":"$context.integration.error","integration.integrationStatus":"$context.integration.integrationStatus","integration.latency":"$context.integration.latency","integration.requestId":"$context.integration.requestId","integration.status":"$context.integration.status","path":"$context.path","requestId":"$context.requestId","responseLatency":"$context.responseLatency","responseLength":"$context.responseLength","stage":"$context.stage","status":"$context.status"}'
executionLogging: false
tracing:
apiGateway: true
lambda: true
functions:
fhirServer:
timeout: 29
description: 'FHIR API Server'
role: FhirServerLambdaRole
events:
- http:
authorizer:
type: COGNITO_USER_POOLS
authorizerId: !Ref ApiGatewayAuthorizer
method: ANY
path: /
private: true
- http:
authorizer:
type: COGNITO_USER_POOLS
authorizerId: !Ref ApiGatewayAuthorizer
method: ANY
path: '{proxy+}'
private: true
- http:
method: GET
path: /metadata
- http:
method: GET
path: /tenant/{tenantId}/metadata
handler: src/index.handler
provisionedConcurrency: 5
environment:
EXPORT_STATE_MACHINE_ARN: !Ref BulkExportStateMachine
PATIENT_COMPARTMENT_V3: ${self:custom.patientCompartmentFileV3}
PATIENT_COMPARTMENT_V4: ${self:custom.patientCompartmentFileV4}
ddbToEs:
timeout: 300
runtime: nodejs14.x
description: 'Write DDB changes from `resource` table to ElasticSearch service'
role: DdbToEsLambdaRole
handler: ddbToEsLambda/index.handler
environment:
ENABLE_ES_HARD_DELETE: ${self:custom.enableESHardDelete}
events:
- stream:
type: dynamodb
arn: !GetAtt ResourceDynamoDBTableV2.StreamArn
batchSize: 15 # Lambda payload size limit ~6MB; DDB row limit ~400KB = 15 items
maximumRetryAttempts: 3
startingPosition: LATEST
subscriptionsMatcher:
timeout: 20
memorySize: !If [isDev, 512, 1024]
reservedConcurrency: !If [isDev, 10, 200]
runtime: nodejs14.x
description: 'Match ddb events against active Subscriptions and emit notifications'
role: SubscriptionsMatcherLambdaRole
handler: src/subscriptions/matcherLambda/index.handler
environment:
SUBSCRIPTIONS_TOPIC: !Ref SubscriptionsTopic
events:
- stream:
type: dynamodb
arn: !GetAtt ResourceDynamoDBTableV2.StreamArn
batchSize: 15 # Lambda payload size limit ~6MB; DDB row limit ~400KB = 15 items
maximumRetryAttempts: 3
startingPosition: LATEST
enabled: ${self:custom.enableSubscriptions} # will only run if opted into subscription feature
startExportJob:
timeout: 30
memorySize: 192
runtime: nodejs14.x
description: 'Start the Glue job for bulk export'
role: GlueJobRelatedLambdaRole
handler: bulkExport/index.startExportJobHandler
environment:
GLUE_JOB_NAME: !Ref ExportGlueJob
stopExportJob:
timeout: 30
memorySize: 192
runtime: nodejs14.x
description: 'Stop the Glue job for bulk export'
role: GlueJobRelatedLambdaRole
handler: bulkExport/index.stopExportJobHandler
environment:
GLUE_JOB_NAME: !Ref ExportGlueJob
getJobStatus:
timeout: 30
memorySize: 192
runtime: nodejs14.x
description: 'Get the status of a Glue job run for bulk export'
role: GlueJobRelatedLambdaRole
handler: bulkExport/index.getJobStatusHandler
environment:
GLUE_JOB_NAME: !Ref ExportGlueJob
updateStatus:
timeout: 30
memorySize: 192
runtime: nodejs14.x
description: 'Update the status of a bulk export job'
role: UpdateStatusLambdaRole
handler: bulkExport/index.updateStatusStatusHandler
uploadGlueScripts:
timeout: 30
memorySize: 192
runtime: nodejs14.x
description: 'Upload glue scripts to s3'
role: UploadGlueScriptsLambdaRole
handler: bulkExport/uploadGlueScriptsToS3.handler
disableLogs: true # needed to avoid race condition error "Resource of type 'AWS::Logs::LogGroup' already exists" since the custom resource lambda invocation may create the log group before CFN does
environment:
GLUE_SCRIPTS_BUCKET: !Ref GlueScriptsBucket
updateSearchMappings:
timeout: 300
memorySize: 512
runtime: nodejs14.x
description: 'Custom resource Lambda to update the search mappings'
role: UpdateSearchMappingsLambdaRole
handler: updateSearchMappings/index.handler
disableLogs: true # needed to avoid race condition error "Resource of type 'AWS::Logs::LogGroup' already exists" since the custom resource lambda invocation may create the log group before CFN does
environment:
ELASTICSEARCH_DOMAIN_ENDPOINT: !Join ['', ['https://', !GetAtt ElasticSearchDomain.DomainEndpoint]]
NUMBER_OF_SHARDS: !If [isDev, 1, 3] # 133 indices, one per resource types
subscriptionReaper:
timeout: 30
runtime: nodejs14.x
description: 'Scheduled Lambda to remove expired Subscriptions'
role: SubscriptionReaperRole
handler: src/subscriptions/reaperLambda/index.handler
events:
- schedule:
rate: rate(5 minutes)
enabled: ${self:custom.enableSubscriptions} # will only run if opted into subscription feature
subscriptionsRestHook:
timeout: 10
runtime: nodejs14.x
description: 'Send rest-hook notification for subscription'
role: RestHookLambdaRole
handler: src/subscriptions/restHookLambda/index.handler
events:
- sqs:
arn:
!GetAtt RestHookQueue.Arn
batchSize: 50
maximumBatchingWindow: 10
functionResponseType: ReportBatchItemFailures
stepFunctions:
stateMachines:
BulkExportStateMachine: ${file(bulkExport/state-machine-definition.yaml)}
resources:
- Description: (SO0128) - Solution - Primary Template - This template creates all the necessary resources to deploy FHIR Works on AWS; a framework to deploy a FHIR server on AWS.
- Parameters:
Stage:
Type: String
Default: ${self:custom.stage}
Description: 'The deployment stage (e.g. dev, qa, prod). Default: dev'
CognitoOAuthDefaultRedirectURL:
Type: String
Default: ${self:custom.oauthRedirect}
Description: "Cognito's default OAuth redirect URL used for User Pool. Default: ${self:custom.oauthRedirect}"
ExportGlueWorkerType:
Type: String
Default: 'G.2X'
AllowedValues:
- 'G.2X'
- 'G.1X'
Description: Select the Glue worker type to run Export jobs. Default is 'G.2X'
ExportGlueNumberWorkers:
Type: Number
Default: 5
Description: Number of Glue workers to use during an Export job.
UseHapiValidator:
Type: String
Default: ${self:custom.useHapiValidator}
AllowedValues:
- 'true'
- 'false'
Description: whether or not to use an already deployed HAPI Validator
EnableMultiTenancy:
Type: String
Default: ${self:custom.enableMultiTenancy}
AllowedValues:
- 'true'
- 'false'
Description: whether or not to enable multi-tenancy
EnableSubscriptions:
Type: String
Default: ${self:custom.enableSubscriptions}
AllowedValues:
- 'true'
- 'false'
Description: whether or not to enable subscriptions
logLevel:
Type: String
Default: ${self:custom.logLevel}
AllowedValues:
- 'debug'
- 'info'
- 'warn'
- 'error'
- Conditions:
isDev: !Equals [!Ref Stage, 'dev']
isNotDev: !Not [Condition: isDev]
isUsingHapiValidator: !Equals [!Ref UseHapiValidator, 'true']
isMultiTenancyEnabled: !Equals [!Ref EnableMultiTenancy, 'true']
- Mappings:
# For the most up to date ec2 types see: https://aws.amazon.com/opensearch-service/pricing/
RegionMap:
us-east-2:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
us-east-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
us-west-1:
smallEc2: c6g.large.elasticsearch
largeEc2: r6g.large.elasticsearch
us-west-2:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
af-south-1:
smallEc2: c5.large.elasticsearch
largeEc2: m5.large.elasticsearch
ap-east-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
ap-south-1:
smallEc2: c6g.large.elasticsearch
largeEc2: r6g.large.elasticsearch
ap-northeast-3:
smallEc2: c5.large.elasticsearch
largeEc2: m5.large.elasticsearch
ap-northeast-2:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
ap-southeast-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
ap-southeast-2:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
ap-northeast-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
ca-central-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
eu-central-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
eu-west-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
eu-west-2:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
eu-south-1:
smallEc2: c5.large.elasticsearch
largeEc2: m5.large.elasticsearch
eu-west-3:
smallEc2: c5.large.elasticsearch
largeEc2: m5.large.elasticsearch
eu-north-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
me-south-1:
smallEc2: c5.large.elasticsearch
largeEc2: m5.large.elasticsearch
sa-east-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
us-gov-east-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
us-gov-west-1:
smallEc2: c6g.large.elasticsearch
largeEc2: m6g.large.elasticsearch
- Resources:
ResourceDynamoDBTableV2:
Metadata:
cfn_nag:
rules_to_suppress:
- id: W28
reason: 'We want to set the table explicit name'
Type: AWS::DynamoDB::Table
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
TableName: '${self:custom.resourceTableName}'
AttributeDefinitions:
- AttributeName: id
AttributeType: S
- AttributeName: vid
AttributeType: N
- AttributeName: _subscriptionStatus
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
- AttributeName: vid
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
StreamSpecification:
StreamViewType: NEW_AND_OLD_IMAGES
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
SSESpecification:
KMSMasterKeyId: !Ref DynamodbKMSKey
SSEEnabled: true
SSEType: 'KMS'
Tags: !If
- isNotDev
- - Key: 'backup' # You must also cfn deploy backup.yaml to enable back-ups
Value: 'daily'
- Key: 'service'
Value: 'fhir'
- !Ref AWS::NoValue
# add GSI to track active subscriptions
GlobalSecondaryIndexes:
- IndexName: activeSubscriptions
KeySchema:
- AttributeName: _subscriptionStatus
KeyType: HASH
- AttributeName: id
KeyType: RANGE
Projection:
ProjectionType: ALL
ExportRequestDynamoDBTable:
Metadata:
cfn_nag:
rules_to_suppress:
- id: W28
reason: 'We want to set the table explicit name'
- id: W78
reason: 'Backup not explicitly needed'
Type: AWS::DynamoDB::Table
Properties:
TableName: '${self:custom.exportRequestTableName}'
AttributeDefinitions:
- AttributeName: jobId
AttributeType: S
- AttributeName: jobStatus
AttributeType: S
- AttributeName: jobOwnerId
AttributeType: S
KeySchema:
- AttributeName: jobId
KeyType: HASH
SSESpecification:
KMSMasterKeyId: !Ref DynamodbKMSKey
SSEEnabled: true
SSEType: 'KMS'
BillingMode: PAY_PER_REQUEST
GlobalSecondaryIndexes:
- IndexName: '${self:custom.exportRequestTableJobStatusIndex}'
KeySchema:
- AttributeName: jobStatus
KeyType: HASH
- AttributeName: jobOwnerId
KeyType: RANGE
Projection:
ProjectionType: KEYS_ONLY
Tags: !If
- isNotDev
- - Key: 'service'
Value: 'fhir'
- !Ref AWS::NoValue
ResourceDynamoDBTable: # Superseded by ResourceDynamoDBTableV2 & is unused;
Type: AWS::DynamoDB::Table # Remaining in the template to give opportunity to move resources from old DB to New with "sort-key-migration.js" script
Metadata:
cfn_nag:
rules_to_suppress:
- id: W28
reason: 'We want to set the table explicit name'
- id: W78
reason: 'Backup not explicitly needed'
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
TableName: '${self:custom.oldResourceTableName}'
AttributeDefinitions:
- AttributeName: id
AttributeType: S
- AttributeName: vid
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
- AttributeName: vid
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
SSESpecification:
KMSMasterKeyId: !Ref DynamodbKMSKey
SSEEnabled: true
SSEType: 'KMS'
ApiGatewayAuthorizer:
Type: AWS::ApiGateway::Authorizer
Properties:
AuthorizerResultTtlInSeconds: 300
IdentitySource: method.request.header.Authorization
RestApiId: !Ref ApiGatewayRestApi
Type: COGNITO_USER_POOLS
Name: !Join ['-', [fhir-works-authorizer, !Ref Stage, !Ref AWS::Region]]
ProviderARNs:
- !Join [
'',
[!Sub 'arn:${AWS::Partition}:cognito-idp:${AWS::Region}:${AWS::AccountId}:userpool/', !Ref UserPool],
]
FHIRBinaryBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
LoggingConfiguration:
DestinationBucketName: !Ref FHIRLogsBucket
LogFilePrefix: 'binary-acl'
VersioningConfiguration:
Status: Enabled
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: aws:kms
KMSMasterKeyID: !Ref S3KMSKey
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
FHIRLogsBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Metadata:
cfn_nag:
rules_to_suppress:
- id: W35
reason: 'This is the logs bucket for access logs'
Properties:
AccessControl: LogDeliveryWrite
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
FHIRBinaryBucketHttpsOnlyPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref FHIRBinaryBucket
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AllowSSLRequestsOnly
Effect: Deny
Principal: '*'
Action:
- s3:*
Resource:
- !GetAtt FHIRBinaryBucket.Arn
- !Join ['', [!GetAtt FHIRBinaryBucket.Arn, '/*']]
Condition:
Bool:
'aws:SecureTransport': false
FHIRLogsBucketHttpsOnlyPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref FHIRLogsBucket
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: AllowSSLRequestsOnly
Effect: Deny
Principal: '*'
Action:
- s3:*
Resource:
- !GetAtt FHIRLogsBucket.Arn
- !Join ['', [!GetAtt FHIRLogsBucket.Arn, '/*']]
Condition:
Bool:
'aws:SecureTransport': false
FhirServerLambdaRole:
Type: AWS::IAM::Role
Metadata:
cfn_nag:
rules_to_suppress:
- id: W11
reason: '* only applies to X-Ray statement which does not define a group or sampling-rule'
- id: W76
reason: 'SPCM higher than 25 is justified'
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Principal:
Service: 'lambda.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'FhirServerLambdaPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:CreateLogGroup
- logs:PutLogEvents
Resource: !Sub 'arn:${AWS::Partition}:logs:${AWS::Region}:*:*'
- Effect: Allow
Action:
- 'kms:Describe*'
- 'kms:Get*'
- 'kms:List*'
- 'kms:Encrypt'
- 'kms:Decrypt'
- 'kms:ReEncrypt*'
- 'kms:GenerateDataKey'
- 'kms:GenerateDataKeyWithoutPlaintext'
Resource:
- !GetAtt S3KMSKey.Arn
- !GetAtt DynamodbKMSKey.Arn
- !GetAtt ElasticSearchKMSKey.Arn
- Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
- 'dynamodb:BatchWriteItem'
- 'dynamodb:PartiQLInsert'
- 'dynamodb:PartiQLUpdate'
Resource:
- !GetAtt ResourceDynamoDBTableV2.Arn
- !Join ['', [!GetAtt ResourceDynamoDBTableV2.Arn, '/index/*']]
- !GetAtt ExportRequestDynamoDBTable.Arn
- Effect: Allow
Action:
- 'dynamodb:Query'
Resource:
- !Join ['', [!GetAtt ExportRequestDynamoDBTable.Arn, '/index/*']]
- Effect: Allow
Action:
- 'es:ESHttpGet'
- 'es:ESHttpHead'
- 'es:ESHttpPost'
Resource:
- !Join ['', [!GetAtt ElasticSearchDomain.Arn, '/*']]
- Effect: Allow
Action:
- 's3:*Object'
- 's3:ListBucket'
- 's3:DeleteObjectVersion'
Resource:
- !GetAtt FHIRBinaryBucket.Arn
- !Join ['', [!GetAtt FHIRBinaryBucket.Arn, '/*']]
- Effect: Allow
Action:
- 's3:ListBucket'
- 's3:GetObject'
Resource:
- !GetAtt BulkExportResultsBucket.Arn
- !Join ['', [!GetAtt BulkExportResultsBucket.Arn, '/*']]
- Effect: Allow
Action:
- 'xray:PutTraceSegments'
- 'xray:PutTelemetryRecords'
Resource:
- '*'
- Effect: Allow
Action:
- 'sts:AssumeRole'
Resource:
- !GetAtt ExportResultsSignerRole.Arn
- Effect: Allow
Action:
- 'states:StartExecution'
Resource:
- !Ref BulkExportStateMachine
- !If
- isUsingHapiValidator
- Effect: Allow
Action:
- 'lambda:InvokeFunction'
Resource:
- !ImportValue 'fhir-service-validator-lambda-${self:custom.stage}'
- !Ref AWS::NoValue
DdbToEsLambdaRole:
Type: AWS::IAM::Role
Metadata:
cfn_nag:
rules_to_suppress:
- id: W11
reason: '* only applies to X-Ray statement which does not define a group or sampling-rule'
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Principal:
Service: 'lambda.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'DdbToEsLambdaPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:CreateLogGroup
- logs:PutLogEvents
Resource: !Sub 'arn:${AWS::Partition}:logs:${AWS::Region}:*:*'
- Effect: Allow
Action:
- dynamodb:GetShardIterator
- dynamodb:DescribeStream
- dynamodb:ListStreams
- dynamodb:GetRecords
Resource:
- !GetAtt ResourceDynamoDBTableV2.StreamArn
- Effect: Allow
Action:
- xray:PutTraceSegments
- xray:PutTelemetryRecords
Resource:
- '*'
- Effect: Allow
Action:
- 'es:ESHttp*'
Resource:
- !Join ['', [!GetAtt ElasticSearchDomain.Arn, '/*']]
- Effect: Allow
Action:
- 'sqs:SendMessage'
Resource:
- !GetAtt DdbToEsDLQ.Arn
- PolicyName: 'KMSPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'kms:Describe*'
- 'kms:Get*'
- 'kms:List*'
- 'kms:Encrypt'
- 'kms:Decrypt'
- 'kms:ReEncrypt*'
- 'kms:GenerateDataKey'
- 'kms:GenerateDataKeyWithoutPlaintext'
Resource:
- !GetAtt DynamodbKMSKey.Arn
- !GetAtt ElasticSearchKMSKey.Arn
SubscriptionsMatcherLambdaRole:
Type: AWS::IAM::Role
Metadata:
cfn_nag:
rules_to_suppress:
- id: W11
reason: '* only applies to X-Ray statement which does not define a group or sampling-rule'
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Principal:
Service: 'lambda.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'SubscriptionsMatcherLambdaPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:CreateLogGroup
- logs:PutLogEvents
Resource: !Sub 'arn:${AWS::Partition}:logs:${AWS::Region}:*:*'
- Effect: Allow
Action:
- dynamodb:GetShardIterator
- dynamodb:DescribeStream
- dynamodb:ListStreams
- dynamodb:GetRecords
Resource:
- !GetAtt ResourceDynamoDBTableV2.StreamArn
- Effect: Allow
Action:
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:GetItem'
Resource:
- !GetAtt ResourceDynamoDBTableV2.Arn
- Effect: Allow
Action:
- 'dynamodb:Query'
Resource:
- !Join [ '', [ !GetAtt ResourceDynamoDBTableV2.Arn, '/index/*' ] ]
- Effect: Allow
Action:
- xray:PutTraceSegments
- xray:PutTelemetryRecords
Resource:
- '*'
- Effect: Allow
Action:
- 'sqs:SendMessage'
Resource:
- !GetAtt subscriptionsMatcherDLQ.Arn
- PolicyName: 'KMSPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'kms:Describe*'
- 'kms:Get*'
- 'kms:List*'
- 'kms:Encrypt'
- 'kms:Decrypt'
- 'kms:ReEncrypt*'
- 'kms:GenerateDataKey'
- 'kms:GenerateDataKeyWithoutPlaintext'
Resource:
- !GetAtt DynamodbKMSKey.Arn
- PolicyName: 'PublishToSNSPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'kms:GenerateDataKey'
- 'kms:Decrypt'
Resource:
- !GetAtt SubscriptionsKey.Arn
- Effect: Allow
Action:
- 'sns:Publish'
Resource:
- !Ref SubscriptionsTopic
UpdateSearchMappingsLambdaRole:
Type: AWS::IAM::Role
Metadata:
cfn_nag:
rules_to_suppress:
- id: W11
reason: '* only applies to X-Ray statement which does not define a group or sampling-rule'
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Principal:
Service: 'lambda.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'DdbToEsLambdaPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:CreateLogGroup
- logs:PutLogEvents
Resource: !Sub 'arn:${AWS::Partition}:logs:${AWS::Region}:*:*'
- Effect: Allow
Action:
- xray:PutTraceSegments
- xray:PutTelemetryRecords
Resource:
- '*'
- Effect: Allow
Action:
- 'es:ESHttpPost'
- 'es:ESHttpPut'
- 'es:ESHttpHead'
Resource:
- !Join ['', [!GetAtt ElasticSearchDomain.Arn, '/*']]
- PolicyName: 'KMSPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'kms:Describe*'
- 'kms:Get*'
- 'kms:List*'
- 'kms:Encrypt'
- 'kms:Decrypt'
- 'kms:ReEncrypt*'
- 'kms:GenerateDataKey'
- 'kms:GenerateDataKeyWithoutPlaintext'
Resource:
- !GetAtt ElasticSearchKMSKey.Arn
SubscriptionReaperRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Principal:
Service: 'lambda.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'SubscriptionReaperPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:UpdateItem
- dynamodb:Query
Resource:
- !Join ['', [!GetAtt ResourceDynamoDBTableV2.Arn, '/index/*']]
- !GetAtt ResourceDynamoDBTableV2.Arn
- Effect: Allow
Action:
- logs:CreateLogStream
- logs:CreateLogGroup
- logs:PutLogEvents
Resource: !Sub 'arn:${AWS::Partition}:logs:${AWS::Region}:*:*'
- PolicyName: 'KMSPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'kms:Describe*'
- 'kms:Get*'
- 'kms:List*'
- 'kms:Encrypt'
- 'kms:Decrypt'
- 'kms:ReEncrypt*'
- 'kms:GenerateDataKey'
- 'kms:GenerateDataKeyWithoutPlaintext'
Resource:
- !GetAtt DynamodbKMSKey.Arn
DdbToEsDLQ:
Type: AWS::SQS::Queue
Properties:
MessageRetentionPeriod: 1209600 # 14 days in seconds
KmsMasterKeyId: 'alias/aws/sqs'
DdbToEsDLQHttpsOnlyPolicy:
Type: AWS::SQS::QueuePolicy
Properties:
PolicyDocument:
Statement:
- Effect: Deny
Action:
- SQS:*
Resource:
- !GetAtt DdbToEsDLQ.Arn
Principal: '*'
Condition:
Bool:
'aws:SecureTransport': false
Queues: [!Ref DdbToEsDLQ]
subscriptionsMatcherDLQ:
Type: AWS::SQS::Queue
Properties:
MessageRetentionPeriod: 1209600 # 14 days in seconds
KmsMasterKeyId: 'alias/aws/sqs'
subscriptionsMatcherDLQHttpsOnlyPolicy:
Type: AWS::SQS::QueuePolicy
Properties:
PolicyDocument:
Statement:
- Effect: Deny
Action:
- SQS:*
Resource:
- !GetAtt subscriptionsMatcherDLQ.Arn
Principal: '*'
Condition:
Bool:
'aws:SecureTransport': false
Queues: [!Ref subscriptionsMatcherDLQ]
# Create a permissions boundary for role Serverless creates to manage Cloudwatch access
# The default role has permission to create any role and attach any policy. Here we are restricting
# the role to only create a specific role and attach only Cloudwatch publishing managed policy
ServerlessLogsBoundary:
Type: AWS::IAM::ManagedPolicy
Properties:
Description: Allows serverless to manage CloudWatch publishing
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- apigateway:GET
- apigateway:PATCH