You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="(Optional) Enable to force a new task deployment of the service. This can be used to update tasks to use a newer Docker image with same image/tag combination (e.g. myimage:latest), roll Fargate tasks onto a newer platform version, or immediately deploy ordered_placement_strategy and placement_constraints updates."
442
+
default=false
443
+
type=bool
444
+
}
445
+
432
446
variable"enable_execute_command" {
433
447
description="(Optional) Specifies whether to enable Amazon ECS Exec for the tasks within the service."
434
448
type=bool
@@ -521,6 +535,19 @@ variable "custom_lb_arn" {
521
535
default=null
522
536
}
523
537
538
+
variable"additional_lbs" {
539
+
default={}
540
+
description="Additional load balancers to add to ECS service"
541
+
type=map(object
542
+
(
543
+
{
544
+
target_group_arn =string
545
+
container_port =number
546
+
}
547
+
)
548
+
)
549
+
}
550
+
524
551
variable"lb_internal" {
525
552
description="(Optional) If true, the LB will be internal."
526
553
type=bool
@@ -615,7 +642,7 @@ variable "lb_http_ports" {
615
642
description="Map containing objects with two fields, listener_port and the target_group_port to redirect HTTP requests"
616
643
type=map(any)
617
644
default={
618
-
default_http= {
645
+
default-http= {
619
646
listener_port =80
620
647
target_group_port =80
621
648
}
@@ -638,7 +665,7 @@ variable "lb_https_ports" {
638
665
description="Map containing objects with two fields, listener_port and the target_group_port to redirect HTTPS requests"
0 commit comments