-
Notifications
You must be signed in to change notification settings - Fork 1
/
var-ec2-elb.tf
49 lines (40 loc) · 962 Bytes
/
var-ec2-elb.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
variable "elb-name" {
description = "Application ELB name"
default = "magento-app-elb"
}
variable "elb-instance-port" {
description = "ELB listener instance port"
default = 80
}
variable "elb-lb-port" {
description = "ELB listener lb port"
default = 80
}
variable "elb-instance-protocol" {
description = "ELB listener instance protocol"
default = "http"
}
variable "elb-lb-protocol" {
description = "ELB listener lb protocol"
default = "http"
}
variable "elb-healthy-threshold" {
description = "ELB healthy threshold"
default = 2
}
variable "elb-unhealthy-threshold" {
description = "ELB unhealthy threshold"
default = 5
}
variable "elb-timeout" {
description = "ELB health check timeout"
default = 5
}
variable "elb-target" {
description = "ELB health check target"
default = "HTTP:80/"
}
variable "elb-interval" {
description = "ELB health check interval"
default = 10
}