This repository was archived by the owner on Jan 28, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathcomponent.ts
1310 lines (1197 loc) · 41.4 KB
/
component.ts
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
import { Component } from "@serverless/core";
import { readJSON, pathExists } from "fs-extra";
import { resolve, join } from "path";
import { Builder } from "@sls-next/lambda-at-edge";
import type {
OriginRequestDefaultHandlerManifest as BuildManifest,
OriginRequestDefaultHandlerManifest,
OriginRequestApiHandlerManifest,
RoutesManifest,
OriginRequestImageHandlerManifest
} from "@sls-next/lambda-at-edge";
import {
deleteOldStaticAssets,
uploadStaticAssetsFromBuild
} from "@sls-next/s3-static-assets";
import {
createInvalidation,
checkCloudFrontDistributionReady
} from "@sls-next/cloudfront";
import obtainDomains from "./lib/obtainDomains";
import {
DEFAULT_LAMBDA_CODE_DIR,
API_LAMBDA_CODE_DIR,
IMAGE_LAMBDA_CODE_DIR,
REGENERATION_LAMBDA_CODE_DIR
} from "./constants";
import type {
BuildOptions,
ServerlessComponentInputs,
LambdaType,
LambdaInput
} from "../types";
import { execSync } from "child_process";
import AWS from "aws-sdk";
import { removeLambdaVersions } from "@sls-next/aws-lambda/dist/removeLambdaVersions";
// Message when deployment is explicitly skipped
const SKIPPED_DEPLOY = "SKIPPED_DEPLOY";
export type DeploymentResult = {
appUrl: string;
bucketName: string;
distributionId: string;
};
class NextjsComponent extends Component {
async default(
inputs: ServerlessComponentInputs = {}
): Promise<DeploymentResult> {
this.initialize();
if (inputs.build !== false) {
await this.build(inputs);
this.postBuild(inputs);
}
return this.deploy(inputs);
}
initialize(): void {
// Improve stack trace by increasing number of lines shown
if (this.context.instance.debugMode) {
Error.stackTraceLimit = 100;
}
// Configure AWS retry policy
if (AWS?.config) {
AWS.config.update({
maxRetries: parseInt(process.env.SLS_NEXT_MAX_RETRIES ?? "10"),
retryDelayOptions: { base: 200 }
});
}
}
readDefaultBuildManifest(
nextConfigPath: string
): Promise<OriginRequestDefaultHandlerManifest> {
return readJSON(
join(nextConfigPath, ".serverless_nextjs/default-lambda/manifest.json")
);
}
readRoutesManifest(nextConfigPath: string): Promise<RoutesManifest> {
return readJSON(join(nextConfigPath, ".next/routes-manifest.json"));
}
pathPattern(pattern: string, routesManifest: RoutesManifest): string {
const basePath = routesManifest.basePath;
return basePath && basePath.length > 0
? `${basePath.slice(1)}/${pattern}`
: pattern;
}
validatePathPatterns(
pathPatterns: string[],
buildManifest: BuildManifest,
routesManifest: RoutesManifest
): void {
const stillToMatch = new Set(pathPatterns);
if (stillToMatch.size !== pathPatterns.length) {
throw Error("Duplicate path declared in cloudfront configuration");
}
// there wont be pages for these paths for this so we can remove them
stillToMatch.delete(this.pathPattern("api/*", routesManifest));
stillToMatch.delete(this.pathPattern("static/*", routesManifest));
stillToMatch.delete(this.pathPattern("_next/static/*", routesManifest));
stillToMatch.delete(this.pathPattern("_next/data/*", routesManifest));
stillToMatch.delete(this.pathPattern("_next/image*", routesManifest));
// check for other api like paths
for (const path of stillToMatch) {
if (/^(\/?api\/.*|\/?api)$/.test(path)) {
stillToMatch.delete(path);
}
}
// setup containers for the paths we're going to be matching against
// for dynamic routes
const manifestRegex: RegExp[] = [];
// for static routes
const manifestPaths = new Set();
// extract paths to validate against from build manifest
const dynamic = buildManifest.pages.dynamic || [];
const ssrNonDynamic = buildManifest.pages.ssr.nonDynamic || {};
const htmlNonDynamic = buildManifest.pages.html.nonDynamic || {};
// dynamic paths to check. We use their regex to match against our input yaml
dynamic.map(({ regex }) => {
manifestRegex.push(new RegExp(regex));
});
// static paths to check
Object.entries({
...ssrNonDynamic,
...htmlNonDynamic
}).map(([path]) => {
manifestPaths.add(path);
});
// first we check if the path patterns match any of the dynamic page regex.
// paths with stars (*) shouldn't cause any issues because the regex will treat these
// as characters.
manifestRegex.forEach((re) => {
for (const path of stillToMatch) {
if (re.test(path)) {
stillToMatch.delete(path);
}
}
});
// now we check the remaining unmatched paths against the non dynamic paths
// and use the path as regex so that we are testing *
for (const pathToMatch of stillToMatch) {
for (const path of manifestPaths) {
if (new RegExp(pathToMatch).test(path as string)) {
stillToMatch.delete(pathToMatch);
}
}
}
if (stillToMatch.size > 0) {
this.context.debug(
"There are other CloudFront path inputs that are not next.js pages, which will be added as custom behaviors."
);
}
}
async readApiBuildManifest(
nextConfigPath: string
): Promise<OriginRequestApiHandlerManifest> {
const path = join(
nextConfigPath,
".serverless_nextjs/api-lambda/manifest.json"
);
return (await pathExists(path))
? readJSON(path)
: Promise.resolve(undefined);
}
async readImageBuildManifest(
nextConfigPath: string
): Promise<OriginRequestImageHandlerManifest> {
const path = join(
nextConfigPath,
".serverless_nextjs/image-lambda/manifest.json"
);
return (await pathExists(path))
? readJSON(path)
: Promise.resolve(undefined);
}
async build(inputs: ServerlessComponentInputs = {}): Promise<void> {
const nextConfigPath = inputs.nextConfigDir
? resolve(inputs.nextConfigDir)
: process.cwd();
const nextStaticPath = inputs.nextStaticDir
? resolve(inputs.nextStaticDir)
: nextConfigPath;
const buildCwd =
typeof inputs.build === "boolean" ||
typeof inputs.build === "undefined" ||
!inputs.build.cwd
? nextConfigPath
: resolve(inputs.build.cwd);
const buildBaseDir =
typeof inputs.build === "boolean" ||
typeof inputs.build === "undefined" ||
!inputs.build.baseDir
? nextConfigPath
: resolve(inputs.build.baseDir);
const buildConfig: BuildOptions = {
enabled: inputs.build
? // @ts-ignore
inputs.build !== false && // @ts-ignore
inputs.build.enabled !== false && // @ts-ignore
inputs.build.enabled !== "false"
: true,
cmd: "node_modules/.bin/next",
args: ["build"],
...(typeof inputs.build === "object" ? inputs.build : {}),
cwd: buildCwd,
baseDir: buildBaseDir, // @ts-ignore
cleanupDotNext: inputs.build?.cleanupDotNext ?? true
};
if (buildConfig.enabled) {
const builder = new Builder(
nextConfigPath,
join(nextConfigPath, ".serverless_nextjs"),
{
cmd: buildConfig.cmd,
cwd: buildConfig.cwd,
env: buildConfig.env,
args: buildConfig.args,
useServerlessTraceTarget: inputs.useServerlessTraceTarget || false,
logLambdaExecutionTimes: inputs.logLambdaExecutionTimes || false,
domainRedirects: inputs.domainRedirects || {},
minifyHandlers: inputs.minifyHandlers || false,
enableHTTPCompression: false,
handler: inputs.handler
? `${inputs.handler.split(".")[0]}.js`
: undefined,
authentication: inputs.authentication ?? undefined,
baseDir: buildConfig.baseDir,
cleanupDotNext: buildConfig.cleanupDotNext,
assetIgnorePatterns: buildConfig.assetIgnorePatterns,
regenerationQueueName: inputs.sqs?.name,
separateApiLambda: buildConfig.separateApiLambda ?? true,
disableOriginResponseHandler:
buildConfig.disableOriginResponseHandler ?? false,
useV2Handler: buildConfig.useV2Handler ?? false
},
nextStaticPath
);
await builder.build(this.context.instance.debugMode);
}
}
/**
* Run any post-build steps synchronously.
* Useful to run any custom commands before deploying.
* @param inputs
*/
postBuild(inputs: ServerlessComponentInputs): void {
const buildOptions = inputs.build;
const postBuildCommands =
(buildOptions as BuildOptions)?.postBuildCommands ?? [];
for (const command of postBuildCommands) {
execSync(command, { stdio: "inherit" });
}
}
async deploy(
inputs: ServerlessComponentInputs = {}
): Promise<DeploymentResult> {
// @ts-ignore
console.log(inputs.loadBalancer);
// Skip deployment if user explicitly set deploy input to false.
// Useful when they just want the build outputs to deploy themselves.
if (inputs.deploy === "false" || inputs.deploy === false) {
return {
appUrl: SKIPPED_DEPLOY,
bucketName: SKIPPED_DEPLOY,
distributionId: SKIPPED_DEPLOY
};
}
const nextConfigPath = inputs.nextConfigDir
? resolve(inputs.nextConfigDir)
: process.cwd();
const nextStaticPath = inputs.nextStaticDir
? resolve(inputs.nextStaticDir)
: nextConfigPath;
const {
defaults: cloudFrontDefaultsInputs,
origins: cloudFrontOriginsInputs,
aliases: cloudFrontAliasesInputs,
priceClass: cloudFrontPriceClassInputs,
errorPages: cloudFrontErrorPagesInputs,
distributionId: cloudFrontDistributionId = null,
comment: cloudFrontComment,
webACLId: cloudFrontWebACLId,
restrictions: cloudFrontRestrictions,
certificate: cloudFrontCertificate,
originAccessIdentityId: cloudFrontOriginAccessIdentityId,
paths: cloudFrontPaths,
waitBeforeInvalidate: cloudFrontWaitBeforeInvalidate = true,
tags: cloudFrontTags,
...cloudFrontOtherInputs
} = inputs.cloudfront || {};
const bucketRegion = inputs.bucketRegion || "us-east-1";
const [
defaultBuildManifest,
apiBuildManifest,
imageBuildManifest,
routesManifest
] = await Promise.all([
this.readDefaultBuildManifest(nextConfigPath),
this.readApiBuildManifest(nextConfigPath),
this.readImageBuildManifest(nextConfigPath),
this.readRoutesManifest(nextConfigPath)
]);
const [
bucket,
cloudFront,
sqs,
defaultEdgeLambda,
apiEdgeLambda,
imageEdgeLambda,
regenerationLambda
] = await Promise.all([
this.load("@sls-next/aws-s3"),
this.load("@sls-next/aws-cloudfront"),
this.load("@sls-next/aws-sqs"),
this.load("@sls-next/aws-lambda", "defaultEdgeLambda"),
this.load("@sls-next/aws-lambda", "apiEdgeLambda"),
this.load("@sls-next/aws-lambda", "imageEdgeLambda"),
this.load("@sls-next/aws-lambda", "regenerationLambda")
]);
const bucketOutputs = await bucket({
accelerated: inputs.enableS3Acceleration ?? true,
name: inputs.bucketName,
region: bucketRegion,
tags: inputs.bucketTags
});
// If new BUILD_ID file is present, remove all versioned assets but the existing build ID's assets, to save S3 storage costs.
// After deployment, only the new and previous build ID's assets are present. We still need previous build assets as it takes time to propagate the Lambda.
await deleteOldStaticAssets({
bucketName: bucketOutputs.name,
bucketRegion: bucketRegion,
basePath: routesManifest.basePath,
credentials: this.context.credentials.aws
});
await uploadStaticAssetsFromBuild({
bucketName: bucketOutputs.name,
bucketRegion: bucketRegion,
basePath: routesManifest.basePath,
nextConfigDir: nextConfigPath,
nextStaticDir: nextStaticPath,
credentials: this.context.credentials.aws,
publicDirectoryCache: inputs.publicDirectoryCache
});
const bucketUrl = `http://${bucketOutputs.name}.s3.${bucketRegion}.amazonaws.com`;
// if origin is relative path then prepend the bucketUrl
// e.g. /path => http://bucket.s3.aws.com/path
const expandRelativeUrls = (origin: string | Record<string, unknown>) => {
const originUrl =
typeof origin === "string" ? origin : (origin.url as string);
const fullOriginUrl =
originUrl.charAt(0) === "/" ? `${bucketUrl}${originUrl}` : originUrl;
if (typeof origin === "string") {
return fullOriginUrl;
} else {
return {
...origin,
url: fullOriginUrl
};
}
};
// parse origins from inputs
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let inputOrigins: any[] = [];
if (cloudFrontOriginsInputs) {
const origins = cloudFrontOriginsInputs as string[];
inputOrigins = origins.map(expandRelativeUrls);
}
const cloudFrontOrigins = [
{
// @ts-ignore
url: inputs.loadBalancer
},
{
url: bucketUrl,
private: true,
pathPatterns: {}
},
...inputOrigins
];
console.log(cloudFrontOrigins[0]);
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("_next/static/*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 86400,
maxTTL: 31536000,
forward: {
headers: "none",
cookies: "none",
queryString: false
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("static/*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 86400,
maxTTL: 31536000,
forward: {
headers: "none",
cookies: "none",
queryString: false
}
};
const buildOptions = (inputs.build ?? {}) as BuildOptions;
const hasSeparateApiLambdaOption =
(!buildOptions.useV2Handler && buildOptions.separateApiLambda) ?? true; // using v2 handler automatically combines the handlers
const hasSeparateAPIPages =
hasSeparateApiLambdaOption &&
apiBuildManifest &&
(Object.keys(apiBuildManifest.apis.nonDynamic).length > 0 ||
Object.keys(apiBuildManifest.apis.dynamic).length > 0);
const hasConsolidatedApiPages =
!hasSeparateApiLambdaOption && defaultBuildManifest.hasApiPages;
const hasISRPages = Object.keys(
defaultBuildManifest.pages.ssg.nonDynamic
).some(
(key) =>
typeof defaultBuildManifest.pages.ssg.nonDynamic[key]
.initialRevalidateSeconds === "number"
);
const hasDynamicISRPages = Object.keys(
defaultBuildManifest.pages.ssg.dynamic
).some(
(key) => defaultBuildManifest.pages.ssg.dynamic[key].fallback !== false
);
const readLambdaInputValue = (
inputKey: "memory" | "timeout" | "name" | "runtime" | "roleArn" | "tags",
lambdaType: LambdaType,
defaultValue: string | number | Record<string, string> | undefined
): string | number | Record<string, string> | undefined => {
const inputValue = inputs[inputKey];
if (typeof inputValue === "string" || typeof inputValue === "number") {
// For lambda name, we should not allow same name to be specified across all lambdas, as this can cause conflicts
if (inputKey === "name") {
throw new Error(
"Name cannot be specified across all Lambdas as it will cause conflicts."
);
}
return inputValue;
}
if (!inputValue) {
return defaultValue;
}
return inputValue[lambdaType] || defaultValue;
};
let queue;
if (hasISRPages || hasDynamicISRPages) {
queue = await sqs({
name: inputs.sqs?.name ?? `${bucketOutputs.name}.fifo`,
deduplicationScope: "messageGroup",
fifoThroughputLimit: "perMessageGroupId",
visibilityTimeout: "30",
fifoQueue: true,
region: bucketRegion, // make sure SQS region and regeneration lambda region are the same
tags: inputs.sqs?.tags
});
}
// default policy
const defaultLambdaPolicy: Record<string, unknown> = {
Version: "2012-10-17",
Statement: [
{
Effect: "Allow",
Resource: "*",
Action: [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
]
},
{
Effect: "Allow",
Resource: `arn:aws:s3:::${bucketOutputs.name}/*`,
Action: ["s3:GetObject", "s3:PutObject"]
},
...(queue
? [
{
Effect: "Allow",
Resource: queue.arn,
Action: ["sqs:SendMessage"]
}
]
: [])
]
};
let policy = defaultLambdaPolicy;
if (inputs.policy) {
if (typeof inputs.policy === "string") {
policy = { arn: inputs.policy };
} else {
policy = inputs.policy;
}
}
let regenerationLambdaResult = undefined;
if (hasISRPages || hasDynamicISRPages) {
const regenerationLambdaInput: LambdaInput = {
region: bucketRegion, // make sure SQS region and regeneration lambda region are the same
description: inputs.description
? `${inputs.description} (Regeneration)`
: "Next.js Regeneration Lambda",
handler: inputs.handler || "index.handler",
code: join(nextConfigPath, REGENERATION_LAMBDA_CODE_DIR),
role: readLambdaInputValue("roleArn", "regenerationLambda", undefined)
? {
arn: readLambdaInputValue(
"roleArn",
"regenerationLambda",
undefined
) as string
}
: {
service: ["lambda.amazonaws.com"],
policy: {
...defaultLambdaPolicy,
Statement: [
...(defaultLambdaPolicy.Statement as Record<
string,
unknown
>[]),
{
Effect: "Allow",
Resource: queue.arn,
Action: [
"sqs:ReceiveMessage",
"sqs:DeleteMessage",
"sqs:GetQueueAttributes"
]
}
]
}
},
memory: readLambdaInputValue(
"memory",
"regenerationLambda",
512
) as number,
timeout: readLambdaInputValue(
"timeout",
"regenerationLambda",
10
) as number,
runtime: readLambdaInputValue(
"runtime",
"regenerationLambda",
"nodejs14.x"
) as string,
name: readLambdaInputValue(
"name",
"regenerationLambda",
bucketOutputs.name
) as string,
tags: readLambdaInputValue(
"tags",
"regenerationLambda",
undefined
) as Record<string, string>
};
regenerationLambdaResult = await regenerationLambda(
regenerationLambdaInput
);
await regenerationLambda.publishVersion();
await sqs.addEventSource(regenerationLambdaResult.name);
}
let apiEdgeLambdaOutputs = undefined;
// Only upload separate API lambda + set cache behavior if api-lambda directory is populated
if (hasSeparateAPIPages) {
const apiEdgeLambdaInput: LambdaInput = {
description: inputs.description
? `${inputs.description} (API)`
: "API Lambda@Edge for Next CloudFront distribution",
handler: inputs.handler || "index.handler",
code: join(nextConfigPath, API_LAMBDA_CODE_DIR),
role: readLambdaInputValue("roleArn", "apiLambda", undefined)
? {
arn: readLambdaInputValue(
"roleArn",
"apiLambda",
undefined
) as string
}
: {
service: ["lambda.amazonaws.com", "edgelambda.amazonaws.com"],
policy
},
memory: readLambdaInputValue("memory", "apiLambda", 512) as number,
timeout: readLambdaInputValue("timeout", "apiLambda", 10) as number,
runtime: readLambdaInputValue(
"runtime",
"apiLambda",
"nodejs14.x"
) as string,
name: readLambdaInputValue("name", "apiLambda", undefined) as
| string
| undefined,
tags: readLambdaInputValue("tags", "apiLambda", undefined) as Record<
string,
string
>
};
apiEdgeLambdaOutputs = await apiEdgeLambda(apiEdgeLambdaInput);
const apiEdgeLambdaPublishOutputs = await apiEdgeLambda.publishVersion();
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("api/*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 31536000,
allowedHttpMethods: [
"HEAD",
"DELETE",
"POST",
"GET",
"OPTIONS",
"PUT",
"PATCH"
],
forward: {
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
cookies: "all",
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${apiEdgeLambdaOutputs.arn}:${apiEdgeLambdaPublishOutputs.version}`
}
};
}
let imageEdgeLambdaOutputs = undefined;
if (imageBuildManifest) {
const imageEdgeLambdaInput: LambdaInput = {
description: inputs.description
? `${inputs.description} (Image)`
: "Image Lambda@Edge for Next CloudFront distribution",
handler: inputs.handler || "index.handler",
code: join(nextConfigPath, IMAGE_LAMBDA_CODE_DIR),
role: readLambdaInputValue("roleArn", "imageLambda", undefined)
? {
arn: readLambdaInputValue(
"roleArn",
"imageLambda",
undefined
) as string
}
: {
service: ["lambda.amazonaws.com", "edgelambda.amazonaws.com"],
policy
},
memory: readLambdaInputValue("memory", "imageLambda", 512) as number,
timeout: readLambdaInputValue("timeout", "imageLambda", 10) as number,
runtime: readLambdaInputValue(
"runtime",
"imageLambda",
"nodejs14.x"
) as string,
name: readLambdaInputValue("name", "imageLambda", undefined) as
| string
| undefined,
tags: readLambdaInputValue("tags", "imageLambda", undefined) as Record<
string,
string
>
};
imageEdgeLambdaOutputs = await imageEdgeLambda(imageEdgeLambdaInput);
const imageEdgeLambdaPublishOutputs =
await imageEdgeLambda.publishVersion();
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("_next/image*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 60,
maxTTL: 31536000,
allowedHttpMethods: [
"HEAD",
"DELETE",
"POST",
"GET",
"OPTIONS",
"PUT",
"PATCH"
],
forward: {
headers: ["Accept"]
},
"lambda@edge": {
"origin-request": `${imageEdgeLambdaOutputs.arn}:${imageEdgeLambdaPublishOutputs.version}`
}
};
}
const defaultEdgeLambdaInput: LambdaInput = {
description:
inputs.description ||
"Default Lambda@Edge for Next CloudFront distribution",
handler: inputs.handler || "index.handler",
code: join(nextConfigPath, DEFAULT_LAMBDA_CODE_DIR),
role: readLambdaInputValue("roleArn", "defaultLambda", undefined)
? {
arn: readLambdaInputValue(
"roleArn",
"defaultLambda",
undefined
) as string
}
: {
service: ["lambda.amazonaws.com", "edgelambda.amazonaws.com"],
policy
},
memory: readLambdaInputValue("memory", "defaultLambda", 512) as number,
timeout: readLambdaInputValue("timeout", "defaultLambda", 10) as number,
runtime: readLambdaInputValue(
"runtime",
"defaultLambda",
"nodejs14.x"
) as string,
name: readLambdaInputValue("name", "defaultLambda", undefined) as
| string
| undefined,
tags: readLambdaInputValue("tags", "defaultLambda", undefined) as Record<
string,
string
>
};
const defaultEdgeLambdaOutputs = await defaultEdgeLambda(
defaultEdgeLambdaInput
);
const defaultEdgeLambdaPublishOutputs =
await defaultEdgeLambda.publishVersion();
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("_next/data/*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 31536000,
allowedHttpMethods: ["HEAD", "GET"],
forward: {
cookies: "all",
headers: ["Authorization", "Host"],
queryString: true
},
"lambda@edge": buildOptions.disableOriginResponseHandler
? {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
: {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/business*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/resources*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/promos*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/about-us*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/certifications*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/sitemaps*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/training-and-events*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/support*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]
: ["Authorization", "Host"],
queryString: true
},
// lambda@edge key is last and therefore cannot be overridden
"lambda@edge": {
"origin-request": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`,
"origin-response": `${defaultEdgeLambdaOutputs.arn}:${defaultEdgeLambdaPublishOutputs.version}`
}
};
cloudFrontOrigins[1].pathPatterns[
this.pathPattern("/lp*", routesManifest)
] = {
minTTL: 0,
defaultTTL: 0,
maxTTL: 86400,
forward: {
cookies: "all",
headers: routesManifest.i18n
? ["Accept-Language", "Authorization", "Host"]