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
621 lines (608 loc) · 23.5 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
#
# 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'}
bundle:
externals:
- fhir-works-on-aws-routing
packager: yarn
copyFiles: # Copy any additional files to the generated package
- from: 'bulkExport/glueScripts/export-script.py'
to: './bulkExport/glueScripts/export-script.py'
- from: 'compiledImplementationGuides/*'
to: './'
provider:
name: aws
region: us-west-2
stage: dev
runtime: nodejs12.x
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: 'AwsLabs/SO0128/2.6.0'
VALIDATOR_LAMBDA_ALIAS:
!If
- isUsingHapiValidator
- Fn::ImportValue: "fhir-service-validator-lambda-${self:custom.stage}"
- !Ref AWS::NoValue
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
variableSyntax: "\\${((?!AWS)[ ~:a-zA-Z0-9._@'\",\\-\\/\\(\\)]+?)}" # Use this for allowing CloudFormation Pseudo-Parameters in your serverless.yml
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: 40
description: 'FHIR API Server'
role: FhirServerLambdaRole
events:
- http:
authorizer:
type: COGNITO_USER_POOLS
authorizerId: !Ref ApiGatewayAuthorizer
scopes: # must have both scopes
- 'openid'
- 'profile'
- 'aws.cognito.signin.user.admin'
method: ANY
path: /
private: true
- http:
authorizer:
type: COGNITO_USER_POOLS
authorizerId: !Ref ApiGatewayAuthorizer
scopes: # must have both scopes
- 'openid'
- 'profile'
- 'aws.cognito.signin.user.admin'
method: ANY
path: '{proxy+}'
private: true
- http:
method: GET
path: /metadata
handler: src/index.default
provisionedConcurrency: 5
environment:
EXPORT_STATE_MACHINE_ARN: !Ref BulkExportStateMachine
ddbToEs:
timeout: 300
runtime: nodejs12.x
description: 'Write DDB changes from `resource` table to ElasticSearch service'
role: DdbToEsLambdaRole
handler: ddbToEsLambda/index.handler
events:
- stream:
type: dynamodb
arn: !GetAtt ResourceDynamoDBTableV2.StreamArn
batchSize: 100
maximumRetryAttempts: 3
startingPosition: LATEST
startExportJob:
timeout: 30
memorySize: 192
runtime: nodejs12.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: nodejs12.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: nodejs12.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: nodejs12.x
description: 'Update the status of a bulk export job'
role: UpdateStatusLambdaRole
handler: bulkExport/index.updateStatusStatusHandler
uploadGlueScripts:
timeout: 30
memorySize: 192
runtime: nodejs12.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
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
- Conditions:
isDev: !Equals [!Ref Stage, 'dev']
isNotDev: !Not [Condition: isDev]
isUsingHapiValidator: !Equals [!Ref UseHapiValidator, 'true']
- Resources:
ResourceDynamoDBTableV2:
Type: AWS::DynamoDB::Table
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
TableName: '${self:custom.resourceTableName}'
AttributeDefinitions:
- AttributeName: id
AttributeType: S
- AttributeName: vid
AttributeType: N
KeySchema:
- AttributeName: id
KeyType: HASH
- AttributeName: vid
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
StreamSpecification:
StreamViewType: NEW_AND_OLD_IMAGES
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
ExportRequestDynamoDBTable:
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
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: Authorizer
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
FHIRLogsBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
AccessControl: LogDeliveryWrite
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
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
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'
Resource:
- !GetAtt ResourceDynamoDBTableV2.Arn
- !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:
- Fn::ImportValue: "fhir-service-validator-lambda-${self:custom.stage}"
- !Ref AWS::NoValue
DdbToEsLambdaRole:
Type: AWS::IAM::Role
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, '/*']]
- 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
- extensions:
FhirServerLogGroup:
Properties:
KmsKeyId: !GetAtt LogKMSKey.Arn
DependsOn:
- LogKMSKey
DdbToEsLogGroup:
Properties:
KmsKeyId: !GetAtt LogKMSKey.Arn
DependsOn:
- LogKMSKey
StartExportJobLogGroup:
Properties:
KmsKeyId: !GetAtt LogKMSKey.Arn
DependsOn:
- LogKMSKey
StopExportJobLogGroup:
Properties:
KmsKeyId: !GetAtt LogKMSKey.Arn
DependsOn:
- LogKMSKey
GetJobStatusLogGroup:
Properties:
KmsKeyId: !GetAtt LogKMSKey.Arn
DependsOn:
- LogKMSKey
UpdateStatusLogGroup:
Properties:
KmsKeyId: !GetAtt LogKMSKey.Arn
DependsOn:
- LogKMSKey
ApiGatewayLogGroup:
Properties:
KmsKeyId: !GetAtt LogKMSKey.Arn
DependsOn:
- LogKMSKey
- ${file(cloudformation/alarms.yaml)}
- ${file(cloudformation/kms.yaml)}
- ${file(cloudformation/elasticsearch.yaml)}
- ${file(cloudformation/cognito.yaml)}
- ${file(cloudformation/bulkExport.yaml)}
- Outputs:
UserPoolId:
Description: User pool id for the provisioning users.
Value: !Ref UserPool
UserPoolAppClientId:
Description: App client id for the provisioning users.
Value: !Ref UserPoolClient
FHIRBinaryBucket:
Description: S3 Bucket for storing Binary Objects
Value: !Ref FHIRBinaryBucket
ResourceDynamoDBTableV2Arn:
Description: DynamoDB table for storing non-Binary resources
Value: !GetAtt ResourceDynamoDBTableV2.Arn
ResourceDynamoDBTableV2StreamArn:
Description: DynamoDB stream for the DDB table storing non-Binary resources
Value: !GetAtt ResourceDynamoDBTableV2.StreamArn
ExportRequestDynamoDBTableArn:
Description: DynamoDB table for storing bulk export requests
Value: !GetAtt ExportRequestDynamoDBTable.Arn
ElasticSearchDomainEndpoint:
Description: Endpoint of ElasticSearch instance
Value: !Join ['', ['https://', !GetAtt ElasticSearchDomain.DomainEndpoint]]
ElasticSearchDomainKibanaEndpoint:
Condition: isDev
Description: ElasticSearch Kibana endpoint
Value: !Join ['', ['https://', !GetAtt ElasticSearchDomain.DomainEndpoint, '/_plugin/kibana']]
ElasticSearchKibanaUserPoolId:
Condition: isDev
Description: User pool id for the provisioning ES Kibana users.
Value: !Ref KibanaUserPool
ElasticSearchKibanaUserPoolAppClientId:
Condition: isDev
Description: App client id for the provisioning ES Kibana users.
Value: !Ref KibanaUserPoolClient
CloudwatchExecutionLogGroup:
Description: Cloudwatch Execution log group for storing request/responses for auditing purposes
Value: !Join ['', ['API-Gateway-Execution-Logs_', !Ref ApiGatewayRestApi, '/', !Ref Stage]]
Export:
Name: !Join ['-', [CloudwatchExecutionLogGroup, !Ref Stage]]
CloudwatchExecutionLogGroupArn:
Description: Arn of Cloudwatch Execution log group for storing request/responses for auditing purposes
Value:
!Join [
'',
[
!Sub 'arn:${AWS::Partition}:logs:${AWS::Region}:${AWS::AccountId}:log-group:API-Gateway-Execution-Logs_',
!Ref ApiGatewayRestApi,
'/',
!Ref Stage,
':log-stream:*',
],
]
Export:
Name: !Join ['-', [CloudwatchExecutionLogGroup, !Ref Stage, Arn]]
plugins:
- serverless-step-functions
- serverless-bundle
- serverless-offline