-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
609 lines (572 loc) · 18.2 KB
/
serverless.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
service: ${self:custom.package.name}
custom:
awsAccountId: ${env:AWS_ACCOUNT_ID, self:custom.package.config.awsAccountId}
defaultStage: development
defaultEnvironment: development
package: ${file(./package.json)}
staticAssetsUrl: https://s3-eu-west-1.amazonaws.com/${self:custom.package.config.${self:provider.stagePrefix}.publicS3Bucket}/${self:custom.package.name}/${self:provider.stage}
gatewayResponseTemplates: ${file(./src/ssr/deploy/gatewayResponseTemplates.js)}
versioning:
default: false
production: true
prerelease: false
staging: false
settings: ${file(./serverless-settings-${self:provider.stagePrefix}.yml):settings}
xrayTracingMode: Active
provider:
name: aws
runtime: nodejs12.x
stage: ${env:STAGE, self:custom.defaultStage}
stagePrefix: ${env:STAGE_PREFIX, self:custom.defaultStage}
region: eu-west-1
role: ${self:custom.settings.role}
deploymentBucket: ${self:custom.settings.deploymenBucket}
versionFunctions: ${self:custom.versioning.${self:provider.stagePrefix}, self:custom.versioning.default}
environment:
STAGE: ${self:provider.stage}
LOGGING: ${env:LOGGING, 'true'}
NODE_ENV: ${env:NODE_ENV, self:custom.defaultEnvironment}
CDN_HOST_URL: ${env:CDN_HOST_URL, self:custom.package.config.${self:provider.stagePrefix}.cdnHostUrl}
CDN_HOST_URL_PREFIX: ${self:provider.environment.CDN_HOST_URL}/${self:custom.package.name}/${self:provider.stage}
notificationArns:
- ${self:custom.settings.notificationArns}
stackTags:
deployedBy: ${env:DEPLOYED_BY}
deployTime: ${env:DEPLOY_TIME}
branchName: ${env:BRANCH_NAME}
commitHash: ${env:COMMIT_HASH}
plugins:
- serverless-offline
package:
excludeDevDependencies: false
include:
- '!./**'
# we include static/js so that we can map error call sites reported
# by the browser (in POST /client-errors route/handler) back to the source
- 'public/static/js/**'
- 'public/hold-on.html'
- 'public/unsupported.html'
- 'dist/**'
functions:
ssr:
description: Server Side Rendering
memorySize: 1024
timeout: 30
handler: dist/handler-appRoot.default
events:
- schedule:
name: ${self:service}-${self:provider.stage}-keep-lambda-warm
description: Keeps the lambda function warm by invoking it on a schedule
rate: rate(5 minutes)
- http:
path: /
method: GET
- http:
path: /{route+}
method: GET
login-redirect:
description: Endpoint for initiating login flow without rendering landing page
memorySize: 128
timeout: 15
handler: dist/handler-loginRedirect.default
events:
- http:
path: /login-redirect
method: GET
manifest:
description: Endpoint for manifest file
memorySize: 128
timeout: 15
handler: dist/handler-manifest.default
events:
- http:
path: /manifest
method: GET
client-errors:
description: Endpoint for client error reports
memorySize: 128
timeout: 15
handler: dist/handler-clientErrors.default
events:
- http:
path: /client-errors
method: POST
connection-status:
description: Endpoint for client connection status check
memorySize: 128
timeout: 15
handler: dist/handler-connectionStatus.default
events:
- http:
path: /connection-status
method: GET
cookie-monster:
description: Endpoint to check if cookies are enabled
memorySize: 256
timeout: 15
handler: dist/handler-cookieMonster.default
events:
- http:
path: /cookie-monster
method: GET
csp-reports:
description: Endpoint where CSP violations get reported by the browser
memorySize: 128
timeout: 15
handler: dist/handler-cspReports.default
events:
- http:
path: /csp-reports
method: POST
unsupported:
description: Endpoint where unsupported browsers get redirected to
memorySize: 128
timeout: 15
handler: dist/handler-unsupported.default
events:
- http:
path: /unsupported
method: GET
resources:
Conditions:
StageIsProductionCondition:
Fn::Equals:
- ${self:provider.stage}
- production
Resources:
ApiGatewayRestApi:
Properties:
BinaryMediaTypes:
- '*/*'
# - "*~1*" # slash / is escaped as ~1 cuz, you know, AWS.
# /oauth root resource (used by /oauth/token)
OauthEndpointRootResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
RestApiId:
Ref: ApiGatewayRestApi
PathPart: oauth
# /oauth/token resource
OauthTokenEndpointResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: OauthEndpointRootResource
RestApiId:
Ref: ApiGatewayRestApi
PathPart: token
# POST /oauth/token integration method
PostOauthTokenEndpointProxyMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: OauthTokenEndpointResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: POST
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri:
Fn::Join:
- ''
- - 'arn:aws:apigateway:'
- Ref: AWS::Region
- :lambda:path/2015-03-31/functions/
- Fn::ImportValue: accounts:${self:provider.stage}:TokenPostLambdaArn
- /invocations
OptionsOauthTokenEndpointProxyMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId:
Ref: ApiGatewayRestApi
ResourceId:
Ref: OauthTokenEndpointResource
AuthorizationType: NONE
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,User-Agent'"
method.response.header.Access-Control-Allow-Methods: "'POST,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
ResponseTemplates:
application/json: ''
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
application/json: '{"statusCode": 200}'
Type: MOCK
ContentHandling: CONVERT_TO_TEXT
MethodResponses:
- StatusCode: 200
ResponseModels:
application/json: 'Empty'
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: false
method.response.header.Access-Control-Allow-Methods: false
method.response.header.Access-Control-Allow-Origin: false
# /auth root resource (used by /oauth/token)
AuthEndpointProxyRootResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
RestApiId:
Ref: ApiGatewayRestApi
PathPart: auth
AuthEndpointProxyVarResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: AuthEndpointProxyRootResource
RestApiId:
Ref: ApiGatewayRestApi
PathPart: '{proxy+}'
# /auth/authorize resource
AuthAuthorizeEndpointResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: AuthEndpointProxyRootResource
RestApiId:
Ref: ApiGatewayRestApi
PathPart: authorize
# /auth/token resource
AuthTokenEndpointResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: AuthEndpointProxyRootResource
RestApiId:
Ref: ApiGatewayRestApi
PathPart: token
# GET /auth/authorize integration method
GetAuthAuthorizeEndpointProxyMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: AuthAuthorizeEndpointResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: GET
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri:
Fn::Join:
- ''
- - 'arn:aws:apigateway:'
- Ref: AWS::Region
- :lambda:path/2015-03-31/functions/
- 'arn:aws:lambda:'
- ${self:provider.region}
- ':'
- ${self:custom.awsAccountId}
- ':function:'
- ${self:service}-${self:provider.stage}-ssr
- /invocations
# POST /auth/token integration method
PostAuthTokenEndpointProxyMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: AuthTokenEndpointResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: POST
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri:
Fn::Join:
- ''
- - 'arn:aws:apigateway:'
- Ref: AWS::Region
- :lambda:path/2015-03-31/functions/
- Fn::ImportValue: accounts:${self:provider.stage}:TokenPostLambdaArn
- /invocations
OptionsAuthTokenEndpointProxyMethod:
Type: AWS::ApiGateway::Method
Properties:
RestApiId:
Ref: ApiGatewayRestApi
ResourceId:
Ref: AuthTokenEndpointResource
AuthorizationType: NONE
HttpMethod: OPTIONS
Integration:
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,User-Agent'"
method.response.header.Access-Control-Allow-Methods: "'POST,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
ResponseTemplates:
application/json: ''
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
application/json: '{"statusCode": 200}'
Type: MOCK
ContentHandling: CONVERT_TO_TEXT
MethodResponses:
- StatusCode: 200
ResponseModels:
application/json: 'Empty'
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: false
method.response.header.Access-Control-Allow-Methods: false
method.response.header.Access-Control-Allow-Origin: false
# ANY /auth/{proxy+}
AuthEndpointProxyMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: AuthEndpointProxyVarResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: ANY
RequestParameters:
method.request.path.proxy: true
Integration:
Type: HTTP_PROXY
IntegrationHttpMethod: ANY
Uri:
Fn::Join:
- ''
- - https://auth.
- Fn::If:
- StageIsProductionCondition
- ''
- ${self:provider.stage}.
- allthings.me/auth/{proxy}
RequestParameters:
integration.request.path.proxy: method.request.path.proxy
# /accounts root resource (used by /accounts/graphql)
AccountsEndpointRootResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
RestApiId:
Ref: ApiGatewayRestApi
PathPart: accounts
# /accounts/graphql resource
AccountsGraphqlEndpointResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: AccountsEndpointRootResource
RestApiId:
Ref: ApiGatewayRestApi
PathPart: graphql
# ANY /accounts/graphql integration method
AnyAccountsGraphqlEndpointProxyMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: AccountsGraphqlEndpointResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: ANY
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: ANY
Uri:
Fn::Join:
- ''
- - 'arn:aws:apigateway:'
- Ref: AWS::Region
- :lambda:path/2015-03-31/functions/
- Fn::ImportValue: accounts:${self:provider.stage}:GraphqlLambdaArn
- /invocations
# GET /favico.ico
FaviconResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
RestApiId:
Ref: ApiGatewayRestApi
PathPart: favicon.ico
FaviconMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: FaviconResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: GET
Integration:
Type: HTTP_PROXY
IntegrationHttpMethod: GET
Uri: ${self:custom.staticAssetsUrl}/favicon.ico
# GET /demo.html
DemoHtmlResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
RestApiId:
Ref: ApiGatewayRestApi
PathPart: demo.html
DemoHtmlMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: DemoHtmlResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: GET
Integration:
Type: HTTP_PROXY
IntegrationHttpMethod: GET
Uri: ${self:custom.staticAssetsUrl}/demo.html
# /.well-known root resource (used by /.well-known/assetlinks.json)
WellKnownRootResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Fn::GetAtt:
- ApiGatewayRestApi
- RootResourceId
RestApiId:
Ref: ApiGatewayRestApi
PathPart: .well-known
# GET /.well-known/assetlinks.json (Android Deeplinking)
AssetLinksJsonResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: WellKnownRootResource
RestApiId:
Ref: ApiGatewayRestApi
PathPart: assetlinks.json
AssetLinksJsonMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: AssetLinksJsonResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: GET
Integration:
Type: HTTP_PROXY
IntegrationHttpMethod: GET
Uri: ${self:custom.staticAssetsUrl}/well-known-assetlinks.json
# GET /.well-known/apple-app-site-association (iOS Deeplinking)
AppleAppSiteAssociationResource:
Type: AWS::ApiGateway::Resource
Properties:
ParentId:
Ref: WellKnownRootResource
RestApiId:
Ref: ApiGatewayRestApi
PathPart: apple-app-site-association
AppleAppSiteAssociationMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId:
Ref: AppleAppSiteAssociationResource
RestApiId:
Ref: ApiGatewayRestApi
AuthorizationType: NONE
HttpMethod: GET
Integration:
Type: HTTP
IntegrationHttpMethod: GET
Uri: ${self:custom.staticAssetsUrl}/apple-app-site-association
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Content-Type: "'application/json'"
MethodResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Content-Type: true
# Default 500 Error Gateway Response
Default500GatewayResponse:
Type: AWS::ApiGateway::GatewayResponse
Properties:
RestApiId:
Ref: ApiGatewayRestApi
ResponseType: DEFAULT_5XX
ResponseTemplates: ${self:custom.gatewayResponseTemplates.DEFAULT_5XX}
# Enable X-Ray tracing on Lambda functions
SsrLambdaFunction:
Properties:
TracingConfig:
Mode: ${self:custom.xrayTracingMode}
ClientDasherrorsLambdaFunction:
Properties:
TracingConfig:
Mode: ${self:custom.xrayTracingMode}
ConnectionDashstatusLambdaFunction:
Properties:
TracingConfig:
Mode: ${self:custom.xrayTracingMode}
CookieDashmonsterLambdaFunction:
Properties:
TracingConfig:
Mode: ${self:custom.xrayTracingMode}
CspDashreportsLambdaFunction:
Properties:
TracingConfig:
Mode: ${self:custom.xrayTracingMode}
# Limit CloudWatch log retention to 3 months
# Under the EU GDPR (General Data Protection Regulation) we’re not allowed to
# collect any personal data without consent. There are exceptions for security
# and audit reasons, ours being that we keep it for audit reasons.
SsrLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 90
ClientDasherrorsLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 90
ConnectionDashstatusLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 90
CookieDashmonsterLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 90
CspDashreportsLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 90
UnsupportedLogGroup:
Type: AWS::Logs::LogGroup
Properties:
RetentionInDays: 90
# Outputs which get used in other CloudFormation Stacks
Outputs:
# Used in the Accounts service to grant App permissions to invoke Account Lambda functions
ApiGatewayRestApiId:
Description: "The ID of the service's Rest API in API Gateway"
Value:
Ref: ApiGatewayRestApi
Export:
Name: ${self:service}:${self:provider.stage}:ApiGatewayRestApiId