We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94db318 commit 69e43b4Copy full SHA for 69e43b4
_variables.tf
@@ -384,3 +384,9 @@ variable "code_deploy" {
384
default = true
385
description = "Enables CodeDeploy role to be used for deployment"
386
}
387
+
388
+variable "idle_timeout" {
389
+ type = number
390
+ default = 400
391
+ description = "IDLE time for ALB on seconds."
392
+}
alb.tf
@@ -12,7 +12,7 @@ resource "aws_lb" "ecs" {
12
aws_security_group.alb[0].id,
13
]
14
15
- idle_timeout = 400
+ idle_timeout = var.idle_timeout
16
17
dynamic "access_logs" {
18
for_each = compact([var.lb_access_logs_bucket])
0 commit comments