-
Notifications
You must be signed in to change notification settings - Fork 8
/
variables.tf
903 lines (788 loc) · 24.4 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
# kics-scan disable=1e434b25-8763-4b00-a5ca-ca03b7abbb66
# The above line disables rule "Name Is Not Snake Case" in KICS
### required Variables
variable "deployment_type" {
type = string
description = "Define the deployment type of either `ec2` or `ecs`"
validation {
condition = contains(["ec2", "ecs"], var.deployment_type)
error_message = "Invalid value - please choose ec2 or ecs."
}
}
variable "ami_id" {
description = "(Optional) AMI image id to use for the deployments"
type = string
default = null
}
variable "ami_operating_system" {
description = "(Optional) Operating system present on supplied `ami_id` AMI. Supported values are `amazon-linux` and `ubuntu`"
type = string
default = "ubuntu"
validation {
condition = can(regex("^(amazon-linux|ubuntu)$", var.ami_operating_system))
error_message = "Supported values are `amazon-linux` and `ubuntu`."
}
}
variable "iam_instance_profile_name" {
description = "(Optional) The name of an IAM instance profile to apply to this deployment"
type = string
default = null
}
variable "region" {
description = "The aws region to access the SSM config items"
type = string
}
variable "vpc_cidr_block" {
description = "The CIDR block in use by the kong vpc"
type = string
}
variable "vpc_id" {
description = "The id of the vpc to create resources in"
type = string
}
### Optional Variables
variable "asg_desired_capacity" {
description = "(Optional) The number of instances that should be running in the group"
type = string
default = 2
}
variable "asg_health_check_grace_period" {
description = "(Optional) Time in seconds after instance comes into service before checking health"
type = string
default = 600
}
variable "asg_max_size" {
description = "(Optional) The maximum size of the auto scale group"
type = string
default = 3
}
variable "asg_min_size" {
description = "(Optional) The minimum size of the auto scale group"
type = string
default = 1
}
variable "associate_public_ip_address" {
description = "(Optional) Should our instances be given public IP addresses"
type = bool
default = false
}
variable "availability_zones" {
description = "(Optional) If using the private_subnets variable then list the subnets availability_zones here"
type = list(string)
default = []
}
variable "ce_pkg" {
description = "(Optional) Filename of the Community Edition package"
type = string
default = "kong_2.3.2_amd64.deb"
}
variable "deck_version" {
description = "(Optional) The version of deck to install"
type = string
default = "1.0.0"
}
variable "description" {
description = "(Optional) Resource description tag"
type = string
default = "Kong API Gateway"
}
variable "ec2_root_volume_size" {
description = "(Optional) Size of the root volume (in Gigabytes)"
type = string
default = 8
}
variable "ec2_root_volume_type" {
description = "(Optional) Type of the root volume (standard, gp2, or io)"
type = string
default = "gp2"
}
# kics-scan ignore-block
variable "ee_creds_ssm_param" {
description = "(Optional) SSM parameter names where customer's Kong enterprise license credentials are stored"
type = object({
license = string
bintray_username = string
bintray_password = string
admin_token = string
})
default = {
license = null
bintray_username = null
bintray_password = null
admin_token = null
}
}
variable "ee_pkg" {
description = "(Optional) Filename of the Enterprise Edition package"
type = string
default = "kong-enterprise-edition_2.3.2.0_all.deb"
}
variable "enable_monitoring" {
description = "(Optional) Should monitoring be enabled on the instances"
type = bool
default = true
}
variable "encrypt_storage" {
description = "(Optional) true/false value to set whether storage within the RDS Database should be encrypted"
type = bool
default = true
}
variable "environment" {
description = "(Optional) Resource environment tag (i.e. dev, stage, prod)"
type = string
default = "dev"
}
variable "force_delete" {
description = "(Optional) Allows deleting the Auto Scaling Group without waiting for all instances in the pool to terminate"
type = bool
default = false
}
variable "health_check_grace_period" {
description = "(Optional) Time (in seconds) after instance comes into service before checking health"
type = number
default = 300
}
variable "health_check_type" {
description = "(Optional) EC2 or ELB. Controls how health checking is done"
type = string
default = "EC2"
}
variable "instance_type" {
description = "(Optional) The instance type to use for the kong deployments"
type = string
default = "t3.medium"
}
variable "key_name" {
description = "(Optional) The name of the aws key pair to use with the deployment"
type = string
default = null
}
variable "user_data" {
description = "(Optional) The user data to provide when launching the instance. N.B if set, this will override the user_data provided by this module"
type = string
default = null
}
variable "kong_clear_database" {
description = "(Optional) If set to true then the database contents will be replaced when control plane instance starts. Typically only used during development."
type = bool
default = false
}
variable "kong_config" {
description = "(Optional) A map of key value pairs that describe the Kong GW config, used when constructing the userdata script"
type = map(string)
default = {}
}
# kics-scan ignore-block
variable "kong_database_config" {
description = "(Optional) Configuration for the kong database"
type = object({
name = string
user = string
password = string
})
default = {
name = "kong"
user = "kong"
password = null
}
}
variable "kong_hybrid_conf" {
description = "(Optional) An object defining the kong http ports"
type = object({
server_name = string
cluster_cert = string
cluster_key = string
mtls = string
ca_cert = string
endpoint = string
})
default = {
server_name = ""
cluster_cert = ""
cluster_key = ""
mtls = "shared"
ca_cert = ""
endpoint = ""
}
}
variable "kong_major_version" {
description = "(Optional) Used to define which Kong major version to use"
type = number
default = 2 # Eventually moved to 3
validation {
condition = contains([2, 3], var.kong_major_version)
error_message = "Must be one of the following values: 2, 3."
}
}
variable "kong_ports" {
description = "(Optional) An object defining the kong http ports"
type = map(number)
default = null
}
variable "kong_ssl_uris" {
description = "(Optional) Object containing the ssl uris for kong, e.g. load balancer dns names and ports"
type = object({
protocol = string
admin_api_uri = string
admin_gui_url = string
portal_gui_host = string
portal_api_url = string
portal_cors_origins = string
})
default = {
protocol = "http"
admin_api_uri = "http://localhost:8001"
admin_gui_url = "http://localhost:8002"
portal_gui_host = "http://localhost:8003"
portal_api_url = "http://localhost:8004"
portal_cors_origins = null
}
}
variable "manager_host" {
description = "(Optional) The host address or name to access kong manager"
type = string
default = ""
}
variable "placement_tenancy" {
description = "(Optional) TODO"
type = string
default = "default"
}
variable "portal_host" {
description = "(Optional) The host address or name to access kong developer portal"
type = string
default = ""
}
# kics-scan ignore-block
variable "postgres_config" {
description = "(Optional) Configuration settings for the postgres database engine"
type = object({
master_user = string
master_password = string
})
default = {
master_user = "root"
master_password = null
}
}
variable "postgres_host" {
description = "(Optional) The address or name of the postgres database host, set this variable when choosing to skip_rds_creation"
type = string
default = ""
}
variable "portal_and_vitals_key_arn" {
description = "(Optional) ARN of the secret which contains the token used to unlock portal and vitals in Kong V3"
type = string
default = ""
validation {
condition = var.portal_and_vitals_key_arn != "" ? can(startswith("arn:aws:", var.portal_and_vitals_key_arn)) : true
error_message = "Invalid format. Please provide a valid ARN."
}
}
variable "private_subnets" {
description = "(Optional) List of private subnet IDs, if not specified then the subnets listed in the private_subnets_to_create variable will be created and used"
type = list(string)
default = []
}
variable "private_subnets_to_create" {
description = "(Optional) A map of subnet objects to create"
type = list(object({
cidr_block = string
az = string
public = bool
}))
default = [
{
cidr_block = "10.0.1.0/24"
az = "default"
public = false
},
{
cidr_block = "10.0.2.0/24"
az = "default"
public = false
},
{
cidr_block = "10.0.3.0/24"
az = "default"
public = false
}
]
}
variable "proxy_config" {
description = "(Optional) Configure HTTP, HTTPS, and NO_PROXY"
type = object({
http_proxy = string
https_proxy = string
no_proxy = string
})
default = {
http_proxy = null
https_proxy = null
no_proxy = null
}
}
variable "root_block_size" {
description = "(Optional) The size of the root block device to attach to each instance"
type = number
default = 20
}
variable "root_block_type" {
description = "(Optional) The type of root block device to add"
type = string
default = "gp2"
}
variable "rules_with_source_cidr_blocks" {
description = "(Optional) Security rules for the Kong instance that have a cidr range for their source"
type = map(object({
type = string,
from_port = number,
to_port = number,
protocol = string,
cidr_blocks = list(string)
}))
default = {
"kong-ingress-proxy-https" = {
type = "ingress",
from_port = 8443,
to_port = 8443,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-api-https" = {
type = "ingress",
from_port = 8444,
to_port = 8444,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-manager-https" = {
type = "ingress",
from_port = 8445,
to_port = 8445,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-portal-gui-https" = {
type = "ingress",
from_port = 8446,
to_port = 8446,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-portal-https" = {
type = "ingress",
from_port = 8447,
to_port = 8447,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-ssh" = {
type = "ingress",
from_port = 22,
to_port = 22,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-8005" = {
type = "ingress",
from_port = 8005,
to_port = 8005,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-8006" = {
type = "ingress",
from_port = 8006,
to_port = 8006,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-ingress-8100" = {
type = "ingress",
from_port = 8100,
to_port = 8100,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-80" = {
type = "egress",
from_port = 80,
to_port = 80,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-443" = {
type = "egress",
from_port = 443,
to_port = 443,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-8443" = {
type = "egress",
from_port = 8443,
to_port = 8443,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-8444" = {
type = "egress",
from_port = 8444,
to_port = 8444,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-8005" = {
type = "egress",
from_port = 8005,
to_port = 8005,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-8006" = {
type = "egress",
from_port = 8006,
to_port = 8006,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-postgresq" = {
type = "egress",
from_port = 5432,
to_port = 5432,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
},
"kong-egress-proxy" = {
type = "egress",
from_port = 3128,
to_port = 3128,
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
}
}
variable "rules_with_source_security_groups" {
description = "(Optional) Security rules for the Kong instance that have another security group for their source"
type = map(object({
type = string,
from_port = number,
to_port = number,
protocol = string,
source_security_group_id = string
}))
default = {}
}
variable "rules_with_source_prefix_list_id" {
description = "(Optional) Security rules for the Kong instance that have a Prefix List ID as their Source"
type = map(object({
type = string,
from_port = number,
to_port = number,
protocol = string,
prefix_list_id = list(string),
}))
default = {}
}
variable "security_group_ids" {
description = "(Optional) A list of security group ID's to associate with the instances"
type = list(string)
default = []
}
variable "service" {
description = "(Optional) Resource service tag"
type = string
default = "kong"
}
variable "skip_final_snapshot" {
description = "(Optional) true/false value to set whether a final RDS Database snapshot should be taken when RDS resource is destroyed"
type = bool
default = true
}
variable "skip_rds_creation" {
description = "(Optional) If set to true then this module will not create its own RDS instance"
type = bool
default = false
}
variable "tags" {
description = "(Optional) Tags to apply to AWS resources, except Auto Scaling Group"
type = map(string)
default = {}
}
variable "tags_asg" {
description = "(Optional) Tags to apply to Auto Scaling Group resources"
type = map(string)
default = {}
}
variable "target_group_arns" {
description = "(Optional) A list of target groups to associate with the Kong ASG"
type = list(string)
default = []
}
variable "desired_capacity" {
description = "(Optional) The number of Amazon EC2 instances that should be running in the group"
type = number
default = 1
}
variable "min_healthy_percentage" {
description = "(Optional) The minimum percentage of healthy instances in Auto Scaling Group during instance refresh"
type = number
default = 30
}
variable "role" {
description = "(Optional) Role of the Kong Task"
type = string
default = null
}
variable "security_group_name" {
description = "(Optional) Common name. Used as security_group name prefix and `Name` tag"
type = string
default = "kong-security-group"
}
## ECS
variable "fargate_cpu" {
description = "(Optional) The CPU for the Fargate Task"
type = number
default = 512
validation {
condition = contains([256, 512, 1024, 2048, 4096], var.fargate_cpu)
error_message = "Must be one of the following values: 256, 512, 1024, 2048, 4096."
}
}
variable "fargate_memory" {
description = "(Optional) The Memory for the Fargate Task"
type = number
default = 2048
validation {
condition = contains([512, 1024, 2048, 3072, 4096, 5120, 6144, 7168, 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456, 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, 30720], var.fargate_memory)
error_message = "Must be either 512 or a multiple of 1024, up to 30720."
}
}
variable "enable_execute_command" {
description = "(Optional) Define whether to enable Amazon ECS Exec for tasks within the service."
type = bool
default = true
}
variable "platform_version" {
description = "(Optional) ECS Service platform version"
type = string
default = "1.4.0"
}
variable "ssl_cert" {
description = "(Optional) Secrets Manager or Parameter Store ARN of the Certificate used to secure traffic to the gateway"
type = string
default = null
}
variable "ssl_key" {
description = "(Optional) Secrets Manager or Parameter Store ARN of the Key used to secure traffic to the gateway"
type = string
default = null
}
variable "lua_ssl_cert" {
description = "(Optional) Secrets Manager or Parameter Store ARN of the Certificate used for Lua cosockets"
type = string
default = null
}
variable "kong_cluster_mtls" {
description = "Define what type of Cluster mTLS is required - either 'shared' or 'pki'."
type = string
default = "shared"
validation {
condition = contains(["pki", "shared"], var.kong_cluster_mtls)
error_message = "Invalid value - please choose pki or shared."
}
}
variable "cluster_ca_cert" {
description = "Secrets Manager or Parameter Store ARN of the Clustering Certificate Authority"
type = string
default = null
}
variable "cluster_cert" {
description = "(Optional) Secrets Manager or Parameter Store ARN of the Clustering Certificate"
type = string
default = null
}
variable "cluster_key" {
description = "(Optional) Secrets Manager or Parameter Store ARN of the Clustering Key"
type = string
default = null
}
variable "kong_log_level" {
description = "(Optional) Level of log output for the Gateway"
type = string
default = "warn"
}
variable "access_log_format" {
description = "(Optional) Log location and format to be defined for the access logs"
type = string
default = "logs/access.log"
}
variable "error_log_format" {
description = "(Optional) Log location and format to be defined for the error logs"
type = string
default = "logs/error.log"
}
variable "nginx_custom_config_path" {
description = "(Optional) Custom NGINX Config that is included in the main configuration through the variable KONG_NGINX_HTTP_INCLUDE"
type = string
default = null
}
variable "desired_count" {
description = "(Optional) Desired Task count for the Gateway ECS Task Definition"
type = number
default = 1
}
variable "min_capacity" {
description = "(Optional) Minimum Capacity for the Gateway ECS Task Definition"
type = number
default = 1
}
variable "max_capacity" {
description = "(Optional) Maximum Capacity for the Gateway ECS Task Definition"
type = number
default = 2
}
variable "image_url" {
description = "(Optional) The URL where the Docker image resides"
type = string
default = null
}
variable "ecs_target_group_arns" {
description = "(Optional) Target Group ARNs for the ECS Service"
type = map(string)
default = null
}
variable "execution_role_arn" {
type = string
description = "(Optional) ARN of the Task Execution Role"
default = null
}
variable "ecs_cluster_arn" {
type = string
description = "(Optional) The ARN of the ECS Cluster created"
default = null
}
variable "ecs_cluster_name" {
type = string
description = "(Optional) The ARN of the ECS Cluster created"
default = null
}
variable "db_password_arn" {
description = "(Optional) The DB Password ARN that is used by the ECS Task Definition"
type = string
default = null
}
variable "pg_max_concurrent_queries" {
description = "The maximum number of concurrent queries that can be executing at any given time. The total number of concurrent queries for this node will be will be: pg_max_concurrent_queries * nginx_worker_processes. The default value of 0 removes this concurrency limitation."
type = number
default = null
}
variable "pg_keepalive_timeout" {
description = "Specify the maximal idle timeout (in ms) for the postgres connections in the pool. If this value is set to 0 then the timeout interval is unlimited."
type = number
default = null
}
variable "log_group" {
description = "(Optional) The Log Group for ECS to report out to"
type = string
default = null
}
variable "kong_admin_gui_session_conf" {
description = "(Optional) The session configuration that Kong will use"
type = string
default = null
}
variable "clustering_endpoint" {
type = string
description = "(Optional) Address of the control plane node from which configuration updates will be fetched"
default = null
}
variable "telemetry_endpoint" {
type = string
description = "(Optional) Telemetry address of the control plane node to which telemetry updates will be posted"
default = ""
}
variable "cluster_server_name" {
type = string
description = "(Optional) The server name used in the SNI of the TLS connection from a DP node to a CP node"
default = ""
}
variable "admin_token" {
type = string
description = "(Optional) The ARN of the admin token to be used within the ECS Task Definition."
default = null
}
variable "kong_admin_api_uri" {
description = "(Optional) The Admin API URI composed of a host, port and path on which the Admin API accepts traffic."
type = string
default = ""
}
variable "kong_admin_gui_url" {
description = "(Optional) The Admin GUI URL of the Kong Manager."
type = string
default = ""
}
variable "entrypoint" {
description = "(Optional) The entrypoint for the Docker container. Set this to override the default behaviour."
type = string
default = null
}
variable "kong_vitals_enabled" {
description = "(Optional) Define whether or not Kong Vitals should be enabled."
type = string
default = "on"
validation {
condition = contains(["on", "off"], var.kong_vitals_enabled)
error_message = "Must be one of the following values: 'on' or 'off'."
}
}
variable "kong_portal_enabled" {
description = "(Optional) Define whether or not the Kong Portal should be enabled."
type = string
default = "on"
}
variable "kong_portal_api_enabled" {
description = "(Optional) Define whether or not the Kong Portal API should be enabled."
type = string
default = "on"
}
variable "kong_portal_gui_host" {
description = "(Optional) The Hostname used for the Portal GUI."
type = string
default = ""
}
variable "kong_portal_gui_protocol" {
description = "(Optional) The protocol used for the portal GUI."
type = string
default = ""
}
variable "kong_portal_api_url" {
description = "(Optional) The Portal API URL of the Portal."
type = string
default = ""
}
variable "vitals_endpoint" {
description = "(Optional) The DNS name for the Vitals endpoint that Gateways should send their metrics to"
type = object({
fqdn = string
port = number
protocol = string
})
default = null
}
variable "vitals_tsdb_address" {
description = "(Optional) Time series database address for Vitals e.g. my-prometheus.net:9090"
type = string
default = "127.0.0.1:443"
}
variable "kong_plugins" {
description = "(Optional) List of Kong plugins, passed through the variable KONG_PLUGINS"
type = list(string)
default = []
}
variable "additional_vars" {
description = "(Optional) Map of additional environment variables to set in the Control Plane"
type = map(string)
default = null
}