-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvariables.tf
1490 lines (1359 loc) · 54.8 KB
/
variables.tf
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
variable "prefix" {
description = "A prefix which will be attached to the resource name to ensure resources are random"
type = string
default = null
}
variable "suffix" {
description = "A suffix which will be attached to the resource name to ensure resources are random"
type = string
default = null
}
variable "s3_folder_prefix" {
description = "An optional folder to store uploaded assets and cached files under"
type = string
default = null
}
variable "zone_suffix" {
description = "An optional zone suffix to add to the assets and cache folder to allow files to be loaded correctly"
type = string
default = null
}
variable "folder_path" {
description = "The path to the open next artifacts"
type = string
}
variable "open_next_version" {
description = "The version of open next that is used"
type = string
default = "v2.x.x"
validation {
condition = can(regex("^v[0-9x]+\\.[0-9x]+\\.[0-9x]+$", var.open_next_version))
error_message = "The open next version must be in the format of v[0-9x]+.[0-9x]+.[0-9x]+ e.g. v2.x.x or v3.0.0"
}
}
variable "s3_exclusion_regex" {
description = "A regex of files to exclude from the s3 copy"
type = string
default = null
}
variable "function_architecture" {
description = "The default instruction set architecture for the lambda functions. This can be overridden for each function."
type = string
default = "arm64"
}
variable "layers" {
description = "The default layers that is applied to all regional functions. This can be overridden for each function."
type = list(string)
default = null
}
variable "iam" {
description = "The default IAM configuration. This can be overridden for each function."
type = object({
path = optional(string, "/")
permissions_boundary = optional(string)
})
default = {}
}
variable "logging_config" {
description = "The default function logging configuration. The log group is determined by the cloudwatch_log variable. This can be overridden for each function."
type = object({
log_format = optional(string)
application_log_level = optional(string)
system_log_level = optional(string)
})
default = null
}
variable "cloudwatch_log" {
description = <<EOF
The default cloudwatch log group configuration. This can be overridden for each function."
Possible values for deployment:
- PER_FUNCTION (default)
- SHARED_PER_ZONE
- USE_EXISTING
When deployment is set to `SHARED_PER_ZONE` or `USE_EXISTING`, name is mandatory.
For `SHARED_PER_ZONE`, the name will include the `aws/lambda` namespace and the supplied prefix and suffix
For `USE_EXISTING`, the name will represent the log group name (including prefix)
EOF
type = object({
deployment = optional(string, "PER_FUNCTION")
retention_in_days = optional(number, 7)
name = optional(string)
log_group_class = optional(string)
skip_destroy = optional(bool)
})
default = {}
}
variable "vpc" {
description = "The default VPC configuration for the lambda resources. This can be overridden for each function."
type = object({
security_group_ids = list(string),
subnet_ids = list(string)
})
default = null
}
variable "origin_timeouts" {
description = "The default CloudFront origin timeout settings. This can be overridden for each function that is connected as an origin on the CloudFront distribution i.e. not edge functions."
type = object({
keepalive_timeout = optional(number)
read_timeout = optional(number)
connection_attempts = optional(number)
connection_timeout = optional(number)
})
default = null
}
variable "aliases" {
description = "The production and staging aliases to use"
type = object({
production = string
staging = string
})
default = null
}
variable "cache_control_immutable_assets_regex" {
description = "Regex to set public,max-age=31536000,immutable on immutable resources"
type = string
default = "^.*(\\.next)$"
}
variable "content_types" {
description = "The MIME type mapping and default for artefacts generated by Open Next"
type = object({
mapping = optional(map(string), {
"svg" = "image/svg+xml",
"js" = "application/javascript",
"css" = "text/css",
"html" = "text/html"
})
default = optional(string, "binary/octet-stream")
})
default = {}
}
variable "warmer_function" {
description = <<EOF
Configuration for the warmer function.
By default, the module will create a new zip from the warmer function code on disk. However, you can override this by supplying a zip file containing the lambda code with either a local reference or a reference to the zip in an S3 bucket.
If the warmer function is enabled, you can conditionally choose to warm the staging distribution. Enabling this will provision another lambda function. By default, the warmer for the staging distribution will use the same concurrency value as the production distribution. However, you can override this value by specifying a `concurrency` value for the `warm_staging` object.
This function is deployed to the region specified on the default AWS Terraform provider.
EOF
type = object({
enabled = optional(bool, false)
warm_staging = optional(object({
enabled = optional(bool, false)
concurrency = optional(number)
}))
function_code = optional(object({
handler = optional(string, "index.handler")
zip = optional(object({
path = string
hash = string
}))
s3 = optional(object({
bucket = string
key = string
object_version = optional(string)
}))
}))
runtime = optional(string, "nodejs20.x")
concurrency = optional(number, 20)
timeout = optional(number, 15 * 60) // 15 minutes
memory_size = optional(number, 1024)
function_architecture = optional(string)
schedule = optional(string, "rate(5 minutes)")
additional_environment_variables = optional(map(string), {})
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
vpc = optional(object({
security_group_ids = list(string),
subnet_ids = list(string)
}))
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
logging_config = optional(object({
log_format = optional(string)
application_log_level = optional(string)
system_log_level = optional(string)
}))
cloudwatch_log = optional(object({
deployment = optional(string)
retention_in_days = optional(number)
name = optional(string)
log_group_class = optional(string)
skip_destroy = optional(bool)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
})
default = {}
}
variable "edge_functions" {
description = <<EOF
Default configutation for all edge functions with the ability to override the configuration per edge function
By default, the module will create a new zip from the edge function code on disk. However, you can override this by supplying a zip file containing the lambda code with either a local reference or a reference to the zip in an S3 bucket.
This feature requires open next v3.
**NOTE:** Terraform does not manage cloudwatch log groups; instead, the lambda service creates the log group when the function runs in each region.
The module `OPEN_NEXT_ORIGIN` environment variable for each edge function, as per the [open next documentation for middleware](https://open-next.js.org/inner_workings/components/middleware#special-overrides). You have the ability to remove this environment variable by setting the `include_open_next_origin_env_variable` to `false` or override this value by setting an environment variable with the same name via the `additional_environment_variables` attribute.
You should increase the deletion timeout to 2 hours `120m`. As the lambda service needs to wait for the replicas to be removed, this often exceeds the default 10-minute deletion timeout. This extended timeout allows Terraform to poll for longer and should help mitigate Terraform failures; an example Terraform configuration can be seen below.
```
timeouts = {
delete = "120m"
}
```
As lambda@edge doesn't support environment variables, the environment variables are injected into the source code before the zip is generated.
**NOTE:** If the lambda function code is supplied as a zip or via an S3 reference, this code modification will not occur
EOF
type = object({
runtime = optional(string, "nodejs20.x")
timeout = optional(number, 10)
memory_size = optional(number, 512)
include_open_next_origin_env_variable = optional(bool, true)
additional_environment_variables = optional(map(string), {})
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
function_overrides = optional(map(object({
function_code = optional(object({
handler = optional(string, "handler.handler")
zip = optional(object({
path = string
hash = string
}))
s3 = optional(object({
bucket = string
key = string
object_version = optional(string)
}))
}))
runtime = optional(string, "nodejs20.x")
timeout = optional(number, 10)
memory_size = optional(number, 512)
include_open_next_origin_env_variable = optional(bool, true)
additional_environment_variables = optional(map(string), {})
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
})), {})
})
default = {}
}
variable "server_function" {
description = <<EOF
Configuration for the server function.
By default, the module will create a new zip from the server function code on disk. However, you can override this by supplying a zip file containing the lambda code with either a local reference or a reference to the zip in an S3 bucket.
Possible values for backend_deployment_type:
- REGIONAL_LAMBDA_WITH_AUTH_LAMBDA
- REGIONAL_LAMBDA_WITH_OAC
- REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL
- REGIONAL_LAMBDA
- EDGE_LAMBDA (only supported with open next v2)
See https://github.com/RJPearson94/terraform-aws-open-next/blob/v3.1.0/docs/backend-server-deployments.md for a complete breakdown of the different backend options.
**NOTE:** When backend_deployment_type is set to EDGE_LAMBDA, Terraform does not manage cloudwatch log groups; instead, the lambda service creates the log group when the function runs in each region.
If you run the server function as a lambda@edge, you should increase the deletion timeout to 2 hours `120m`. As the lambda service needs to wait for the replicas to be removed, this often exceeds the default 10-minute deletion timeout. This extended timeout allows Terraform to poll for longer and should help mitigate Terraform failures; an example Terraform configuration can be seen below.
```
timeouts = {
delete = "120m"
}
```
As lambda@edge doesn't support environment variables, the environment variables are injected into the source code before the zip is generated.
**NOTE:** If the lambda function code is supplied as a zip or via an S3 reference, this code modification will not occur
EOF
type = object({
function_code = optional(object({
handler = optional(string, "index.handler")
zip = optional(object({
path = string
hash = string
}))
s3 = optional(object({
bucket = string
key = string
object_version = optional(string)
}))
}))
enable_streaming = optional(bool)
runtime = optional(string, "nodejs20.x")
backend_deployment_type = optional(string, "REGIONAL_LAMBDA")
timeout = optional(number, 10)
memory_size = optional(number, 1024)
function_architecture = optional(string)
layers = optional(list(string))
additional_environment_variables = optional(map(string), {})
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
vpc = optional(object({
security_group_ids = list(string),
subnet_ids = list(string)
}))
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
logging_config = optional(object({
log_format = optional(string)
application_log_level = optional(string)
system_log_level = optional(string)
}))
cloudwatch_log = optional(object({
deployment = optional(string)
retention_in_days = optional(number)
name = optional(string)
log_group_class = optional(string)
skip_destroy = optional(bool)
}))
origin_timeouts = optional(object({
keepalive_timeout = optional(number)
read_timeout = optional(number)
connection_attempts = optional(number)
connection_timeout = optional(number)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
})
default = {}
validation {
condition = contains(["REGIONAL_LAMBDA_WITH_AUTH_LAMBDA", "REGIONAL_LAMBDA_WITH_OAC", "REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL", "REGIONAL_LAMBDA", "EDGE_LAMBDA"], var.server_function.backend_deployment_type)
error_message = "The server function backend deployment type can be one of REGIONAL_LAMBDA_WITH_AUTH_LAMBDA, REGIONAL_LAMBDA_WITH_OAC, REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL, REGIONAL_LAMBDA or EDGE_LAMBDA"
}
}
variable "additional_server_functions" {
description = <<EOF
Default configutation for all additional server functions with the ability to override the configuration per function.
This feature requires open next v3.
By default, the module will create a new zip from the server function code on disk. However, you can override this by supplying a zip file containing the lambda code with either a local reference or a reference to the zip in an S3 bucket.
Possible values for backend_deployment_type:
- REGIONAL_LAMBDA_WITH_AUTH_LAMBDA
- REGIONAL_LAMBDA_WITH_OAC
- REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL
- REGIONAL_LAMBDA
See https://github.com/RJPearson94/terraform-aws-open-next/blob/v3.1.0/docs/backend-server-deployments.md for a complete breakdown of the different backend options.
EOF
type = object({
enable_streaming = optional(bool)
runtime = optional(string, "nodejs20.x")
backend_deployment_type = optional(string, "REGIONAL_LAMBDA")
timeout = optional(number, 10)
memory_size = optional(number, 1024)
function_architecture = optional(string)
layers = optional(list(string))
additional_environment_variables = optional(map(string), {})
iam_policies = optional(object({
include_bucket_access = optional(bool, false)
include_revalidation_queue_access = optional(bool, false)
include_tag_mapping_db_access = optional(bool, false)
}), {})
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
vpc = optional(object({
security_group_ids = list(string),
subnet_ids = list(string)
}))
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
logging_config = optional(object({
log_format = optional(string)
application_log_level = optional(string)
system_log_level = optional(string)
}))
cloudwatch_log = optional(object({
deployment = optional(string)
retention_in_days = optional(number)
name = optional(string)
log_group_class = optional(string)
skip_destroy = optional(bool)
}))
origin_timeouts = optional(object({
keepalive_timeout = optional(number)
read_timeout = optional(number)
connection_attempts = optional(number)
connection_timeout = optional(number)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
function_overrides = optional(map(object({
function_code = optional(object({
handler = optional(string, "index.handler")
zip = optional(object({
path = string
hash = string
}))
s3 = optional(object({
bucket = string
key = string
object_version = optional(string)
}))
}))
enable_streaming = optional(bool)
runtime = optional(string, "nodejs20.x")
backend_deployment_type = optional(string, "REGIONAL_LAMBDA")
timeout = optional(number, 10)
memory_size = optional(number, 1024)
function_architecture = optional(string)
layers = optional(list(string))
additional_environment_variables = optional(map(string), {})
iam_policies = optional(object({
include_bucket_access = optional(bool, false)
include_revalidation_queue_access = optional(bool, false)
include_tag_mapping_db_access = optional(bool, false)
}), {})
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
vpc = optional(object({
security_group_ids = list(string),
subnet_ids = list(string)
}))
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
logging_config = optional(object({
log_format = optional(string)
application_log_level = optional(string)
system_log_level = optional(string)
}))
cloudwatch_log = optional(object({
deployment = optional(string)
retention_in_days = optional(number)
name = optional(string)
log_group_class = optional(string)
skip_destroy = optional(bool)
}))
origin_timeouts = optional(object({
keepalive_timeout = optional(number)
read_timeout = optional(number)
connection_attempts = optional(number)
connection_timeout = optional(number)
}), {})
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
})), {})
})
default = {}
validation {
condition = contains(["REGIONAL_LAMBDA_WITH_AUTH_LAMBDA", "REGIONAL_LAMBDA_WITH_OAC", "REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL", "REGIONAL_LAMBDA"], var.additional_server_functions.backend_deployment_type) && alltrue([for name, function_override in var.additional_server_functions.function_overrides : contains(["REGIONAL_LAMBDA_WITH_AUTH_LAMBDA", "REGIONAL_LAMBDA_WITH_OAC", "REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL", "REGIONAL_LAMBDA", "EDGE_LAMBDA"], function_override.backend_deployment_type)])
error_message = "The backend deployment type of all additional functions must be one of REGIONAL_LAMBDA_WITH_AUTH_LAMBDA, REGIONAL_LAMBDA_WITH_OAC, REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL or REGIONAL_LAMBDA"
}
}
variable "image_optimisation_function" {
description = <<EOF
Configuration for the image optimisation function.
By default, the module will create a new zip from the image optimisation function code on disk. However, you can override this by supplying a zip file containing the lambda code with either a local reference or a reference to the zip in an S3 bucket.
Possible values for backend_deployment_type:
- REGIONAL_LAMBDA_WITH_AUTH_LAMBDA
- REGIONAL_LAMBDA_WITH_OAC
- REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL
- REGIONAL_LAMBDA
See https://github.com/RJPearson94/terraform-aws-open-next/blob/v3.1.0/docs/backend-server-deployments.md for a complete breakdown of the different backend options.
If you do not want to provision the image optimisation function, you can set `create` to false.
EOF
type = object({
create = optional(bool, true)
function_code = optional(object({
handler = optional(string, "index.handler")
zip = optional(object({
path = string
hash = string
}))
s3 = optional(object({
bucket = string
key = string
object_version = optional(string)
}))
}))
runtime = optional(string, "nodejs20.x")
backend_deployment_type = optional(string, "REGIONAL_LAMBDA")
timeout = optional(number, 25)
memory_size = optional(number, 1536)
additional_environment_variables = optional(map(string), {})
function_architecture = optional(string)
static_image_optimisation = optional(bool, false)
layers = optional(list(string))
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
vpc = optional(object({
security_group_ids = list(string),
subnet_ids = list(string)
}))
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
logging_config = optional(object({
log_format = optional(string)
application_log_level = optional(string)
system_log_level = optional(string)
}))
cloudwatch_log = optional(object({
deployment = optional(string)
retention_in_days = optional(number)
name = optional(string)
log_group_class = optional(string)
skip_destroy = optional(bool)
}))
origin_timeouts = optional(object({
keepalive_timeout = optional(number)
read_timeout = optional(number)
connection_attempts = optional(number)
connection_timeout = optional(number)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
})
default = {}
validation {
condition = contains(["REGIONAL_LAMBDA_WITH_AUTH_LAMBDA", "REGIONAL_LAMBDA_WITH_OAC", "REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL", "REGIONAL_LAMBDA"], var.image_optimisation_function.backend_deployment_type)
error_message = "The image optimisation function backend deployment type can be one of REGIONAL_LAMBDA_WITH_AUTH_LAMBDA, REGIONAL_LAMBDA_WITH_OAC, REGIONAL_LAMBDA_WITH_OAC_AND_ANY_PRINCIPAL or REGIONAL_LAMBDA"
}
}
variable "revalidation_function" {
description = <<EOF
Configuration for the revalidation function.
By default, the module will create a new zip from the revalidation function code on disk. However, you can override this by supplying a zip file containing the lambda code with either a local reference or a reference to the zip in an S3 bucket.
This function is deployed to the region specified on the default AWS Terraform provider.
EOF
type = object({
function_code = optional(object({
handler = optional(string, "index.handler")
zip = optional(object({
path = string
hash = string
}))
s3 = optional(object({
bucket = string
key = string
object_version = optional(string)
}))
}))
runtime = optional(string, "nodejs20.x")
timeout = optional(number, 25)
memory_size = optional(number, 1536)
additional_environment_variables = optional(map(string), {})
layers = optional(list(string))
function_architecture = optional(string)
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
vpc = optional(object({
security_group_ids = list(string),
subnet_ids = list(string)
}))
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
logging_config = optional(object({
log_format = optional(string)
application_log_level = optional(string)
system_log_level = optional(string)
}))
cloudwatch_log = optional(object({
deployment = optional(string)
retention_in_days = optional(number)
name = optional(string)
log_group_class = optional(string)
skip_destroy = optional(bool)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
})
default = {}
}
variable "tag_mapping_db" {
description = <<EOF
Configuration for the ISR tag mapping database
By default, the module uploads the items in the dynamodb-cache JSON file stored locally. The cache alias is appended to each item in the DB.
Possible values for deployment:
- NONE
- CREATE
The read and write capacity for the Global Secondary Index (GSI) can be overridden; however, the table's read and write capacity will be used by default.
EOF
type = object({
deployment = optional(string, "CREATE")
billing_mode = optional(string, "PAY_PER_REQUEST")
read_capacity = optional(number)
write_capacity = optional(number)
revalidate_gsi = optional(object({
read_capacity = optional(number)
write_capacity = optional(number)
}), {})
})
default = {}
}
variable "website_bucket" {
description = <<EOF
Configuration for the website S3 bucket
By default, the module will upload the assets and cache folders that are stored locally.
Possible values for deployment:
- NONE
- CREATE
This bucket is deployed to the region specified on the default AWS Terraform provider.
If deployment is set to `NONE`, then arn, region, name & domain_name are required fields.
**WARNING:** The bucket is fundamental to the architecture, and the module is optional to facilitate sharing a bucket for multi-zone deployments and to support edge cases not supported by the module. With that said, it is not recommended to supply a bucket.
EOF
type = object({
deployment = optional(string, "CREATE")
create_bucket_policy = optional(bool, true)
force_destroy = optional(bool, false)
arn = optional(string)
region = optional(string)
name = optional(string)
domain_name = optional(string)
})
default = {}
}
variable "distribution" {
description = <<EOF
Configuration for the CloudFront distribution.
Possible values for deployment are:
- NONE
- CREATE
The module has a local copy of the x-forwarded host CloudFront function code by default. The code can be seen at https://github.com/RJPearson94/terraform-aws-open-next/blob/v3.1.0/modules/tf-aws-open-next-public-resources/code/xForwardedHost.js (open next v2) and https://github.com/RJPearson94/terraform-aws-open-next/blob/v3.1.0/modules/tf-aws-open-next-public-resources/code/cloudfrontFunctionOpenNextV3.js (open next v3).
This code can be overridden by passing in the javascript function as a string to the `code` argument under the `x_forwarded_host_function` object. An example can be seen below.
```
x_forwarded_host_function = {
code = "function handler(event) { var request = event.request; request.headers['x-forwarded-host'] = request.headers.host; return request; }"
}
```
The auth function is deployed if the server function backend_deployment_type is set to EDGE_LAMBDA.
The module has a local copy of the auth function code, which will be deployed by default. The code can be seen at https://github.com/RJPearson94/terraform-aws-open-next/blob/v3.1.0/modules/tf-aws-open-next-public-resources/code/auth/index.js. You can override this to supplying a zip file containing the lambda code with either a local reference or a reference to the zip in an S3 bucket.
Possible values for the auth_function deployment are:
- NONE
- USE_EXISTING
- CREATE
- DETACH
The auth function arn is mandatory when deployment is set to `USE_EXISTING`.
When migrating from using the auth function to either public cloud functions or to using OAC, you should set the deployment on the auth_function to CREATE, then apply the changes. Then, you can set deployment to false in a subsequent change to clean up the function.
If you run the server function as a lambda@edge, you should increase the deletion timeout to 2 hours `120m`. As the lambda service needs to wait for the replicas to be removed, this often exceeds the default 10-minute deletion timeout. This extended timeout allows Terraform to poll for longer and should help mitigate Terraform failures; an example Terraform configuration can be seen below.
```
auth_function = {
timeouts = {
delete = "120m"
}
}
```
As lambda@edge doesn't support environment variables, the environment variables are injected into the source code before the zip is generated.
**NOTE:** If the lambda function code is supplied as a zip or via an S3 reference, this code modification will not occur
Terraform does not manage cloudwatch log groups for the auth function; the lambda service creates the log group when the function runs in each region.
CloudFront supports Origin Access Control (OAC) for lambda URLs. The possible values for the deployment options are:
- NONE
- CREATE
**NOTE:** If the server function or image optimisation function backend deployment types use OAC, then the OAC will be created.
As there is a limit on the number of cache policies associated with an AWS account, you can either configure the module to create the cache policy or use an existing one. The possible values for the cache policy deployment are:
- USE_EXISTING
- CREATE
If cache policy deployment is set to `USE_EXISTING`, then ID, is a required field.
**WARNING:** The distribution is fundamental to the architecture, and the module is optional to facilitate sharing a distribution for multi-zone deployments and to support edge cases not supported by the module. With that said, it is not recommended to supply a distribution.
EOF
type = object({
deployment = optional(string, "CREATE")
enabled = optional(bool, true)
ipv6_enabled = optional(bool, true)
http_version = optional(string, "http2")
price_class = optional(string, "PriceClass_100")
geo_restrictions = optional(object({
type = optional(string, "none"),
locations = optional(list(string), [])
}), {})
x_forwarded_host_function = optional(object({
runtime = optional(string)
code = optional(string)
}), {})
auth_function = optional(object({
deployment = optional(string, "NONE")
qualified_arn = optional(string)
function_code = optional(object({
handler = optional(string, "index.handler")
zip = optional(object({
path = string
hash = string
}))
s3 = optional(object({
bucket = string
key = string
object_version = optional(string)
}))
}))
runtime = optional(string, "nodejs20.x")
timeout = optional(number, 10)
memory_size = optional(number, 256)
additional_iam_policies = optional(list(object({
name = string,
arn = optional(string)
policy = optional(string)
})), [])
iam = optional(object({
path = optional(string)
permissions_boundary = optional(string)
}))
timeouts = optional(object({
create = optional(string)
update = optional(string)
delete = optional(string)
}), {})
}), {})
lambda_url_oac = optional(object({
deployment = optional(string, "NONE")
}), {})
cache_policy = optional(object({
deployment = optional(string, "CREATE")
id = optional(string)
default_ttl = optional(number, 0)
max_ttl = optional(number, 31536000)
min_ttl = optional(number, 0)
cookie_behavior = optional(string, "all")
header_behavior = optional(string, "whitelist")
header_items = optional(list(string))
query_string_behavior = optional(string, "all")
enable_accept_encoding_brotli = optional(bool)
enable_accept_encoding_gzip = optional(bool)
}), {})
response_headers = optional(object({
deployment = optional(string, "NONE") # NONE, CREATE or USE_EXISTING
id = optional(string)
cors_config = optional(object({
access_control_allow_credentials = bool
access_control_allow_headers = list(string)
access_control_allow_methods = list(string)
access_control_allow_origins = list(string)
access_control_expose_headers = optional(list(string), [])
access_control_max_age_seconds = optional(number)
origin_override = bool
}))
custom_headers_config = optional(list(object({
header = string
override = bool
value = string
})), [])
remove_headers = optional(list(string), [])
security_headers_config = optional(object({
content_security_policy = optional(object({
policy = string
override = bool
}))
content_type_options = optional(object({
override = bool
}))
frame_options = optional(object({
frame_option = string
override = bool
}))
referrer_policy = optional(object({
override = bool
policy = string
}))
strict_transport_security = optional(object({
max_age = number
include_subdomains = optional(bool)
override = bool
preload = optional(bool)
}))
xss_protection = optional(object({
mode_block = optional(bool)
override = bool
protection = bool
report_uri = optional(string)
}))
}))
server_timing_headers_config = optional(object({
enabled = bool
sampling_rate = number
}))
}), {})
})
default = {}
}
variable "behaviours" {
description = "Override the default behaviour config"
type = object({
custom_error_responses = optional(object({
path_overrides = optional(map(object({
allowed_methods = optional(list(string))
cached_methods = optional(list(string))
cache_policy_id = optional(string)
origin_request_policy_id = optional(string)
response_headers_policy_id = optional(string)
compress = optional(bool)
viewer_protocol_policy = optional(string)
viewer_request = optional(object({
type = string
arn = string
include_body = optional(bool)
}))
viewer_response = optional(object({
type = string
arn = string
}))
origin_request = optional(object({
arn = string
include_body = bool
}))
origin_response = optional(object({
arn = string
}))
})))
allowed_methods = optional(list(string))
cached_methods = optional(list(string))
cache_policy_id = optional(string)
origin_request_policy_id = optional(string)
response_headers_policy_id = optional(string)
compress = optional(bool)
viewer_protocol_policy = optional(string)
viewer_request = optional(object({
type = string
arn = string
include_body = optional(bool)
}))
viewer_response = optional(object({
type = string
arn = string
}))
origin_request = optional(object({
type = string
arn = string
include_body = optional(bool)
}))
origin_response = optional(object({
type = string
arn = string
}))
}))
static_assets = optional(object({
paths = optional(list(string))
additional_paths = optional(list(string))
path_overrides = optional(map(object({
allowed_methods = optional(list(string))
cached_methods = optional(list(string))
cache_policy_id = optional(string)
origin_request_policy_id = optional(string)
response_headers_policy_id = optional(string)
compress = optional(bool)
viewer_protocol_policy = optional(string)
viewer_request = optional(object({
type = string
arn = string
include_body = optional(bool)
}))
viewer_response = optional(object({