From 71c524439d4bf1c481e4a08dec64ec248aa7796c Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sun, 11 Jul 2021 20:57:18 +0000 Subject: [PATCH] Fix connections dropping after 60s --- tf/alb.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/tf/alb.tf b/tf/alb.tf index d674f8b..dc2c44f 100644 --- a/tf/alb.tf +++ b/tf/alb.tf @@ -30,6 +30,7 @@ resource "aws_lb" "server" { name = "riju-server" security_groups = [aws_security_group.alb.id] subnets = data.aws_subnet_ids.default.ids + idle_timeout = 3600 } resource "aws_lb_target_group" "server" {