We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 383f005 commit 0a96415Copy full SHA for 0a96415
modules/aws/master-asg/elb.tf
@@ -4,6 +4,8 @@ resource "aws_elb" "api-internal" {
4
internal = true
5
security_groups = ["${var.api_sg_ids}"]
6
7
+ idle_timeout = 3600
8
+
9
listener {
10
instance_port = 443
11
instance_protocol = "tcp"
@@ -44,6 +46,8 @@ resource "aws_elb" "api-external" {
44
46
internal = false
45
47
48
49
50
51
52
instance_port = 22
53
@@ -91,6 +95,8 @@ resource "aws_elb" "console" {
91
95
internal = "${var.public_vpc ? false : true}"
92
96
security_groups = ["${var.console_sg_ids}"]
93
97
98
99
94
100
101
instance_port = 32001
102
0 commit comments