Skip to content

Commit 35b73c0

Browse files
authored
Merge pull request #2279 from wking/bump-load-balancer-timeouts
Bug 1717604: data/aws/vpc/master-elb: Bump load-balancer timeouts to 20m
2 parents d7621ca + 1ec2758 commit 35b73c0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

data/data/aws/vpc/master-elb.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ resource "aws_lb" "api_internal" {
1313
var.tags,
1414
)
1515

16+
timeouts {
17+
create = "20m"
18+
}
19+
1620
depends_on = [aws_internet_gateway.igw]
1721
}
1822

@@ -31,6 +35,10 @@ resource "aws_lb" "api_external" {
3135
var.tags,
3236
)
3337

38+
timeouts {
39+
create = "20m"
40+
}
41+
3442
depends_on = [aws_internet_gateway.igw]
3543
}
3644

0 commit comments

Comments
 (0)