From 84f60e921ebe13b38672fb261ac4483c6c388d79 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 27 Aug 2019 21:35:23 -0700 Subject: [PATCH] data/aws/vpc/master-elb: Drop idle_timeout from aws_lb resources It is not valid for network load balancers [1]. We've been setting this in our Terraform config since 0a96415026 (modules/aws: configure ELB idle timeout, coreos/tectonic-installer#725) when we were using classic load balancers and should have dropped it in 16dfbb3541 (data/aws: use nlbs instead of elbs, 2018-11-01, #594). [1]: https://github.com/terraform-providers/terraform-provider-aws/commit/d25a227e639d770ecec3a50aaae6191d68f17c98#diff-f4b0dbdc7e3eede6ba70cd286c834f37R78 --- data/data/aws/vpc/master-elb.tf | 2 -- 1 file changed, 2 deletions(-) diff --git a/data/data/aws/vpc/master-elb.tf b/data/data/aws/vpc/master-elb.tf index 86b97f3f655..aa0a967a0bc 100644 --- a/data/data/aws/vpc/master-elb.tf +++ b/data/data/aws/vpc/master-elb.tf @@ -4,7 +4,6 @@ resource "aws_lb" "api_internal" { subnets = local.private_subnet_ids internal = true enable_cross_zone_load_balancing = true - idle_timeout = 3600 tags = merge( { @@ -22,7 +21,6 @@ resource "aws_lb" "api_external" { subnets = local.public_subnet_ids internal = false enable_cross_zone_load_balancing = true - idle_timeout = 3600 tags = merge( {