-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
71 lines (58 loc) · 1.97 KB
/
variables.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
## Target Group
variable "name" {
description = "The name of the target group."
default = null
}
variable "name_prefix" {
description = " Creates a unique name beginning with the specified prefix"
default = null
}
variable "port" {
description = "The port on which targets receive traffic, unless overridden when registering a specific target."
type = number
default = null
}
variable "protocol" {
description = "The protocol to use for routing traffic to the targets."
default = null
}
variable "vpc_id" {
description = "The identifier of the VPC in which to create the target group."
default = null
}
variable "deregistration_delay" {
description = "The amount time for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused."
default = 300
type = number
}
variable "load_balancing_algorithm_type" {
description = "Determines how the load balancer selects targets when routing requests"
default = null
}
variable "lambda_multi_value_headers_enabled" {
description = "Boolean whether the request and response headers exchanged between the load balancer and the Lambda function include arrays of values or strings"
default = null
}
variable "proxy_protocol_v2" {
description = "Boolean to enable / disable support for proxy protocol v2 on Network Load Balancers"
default = null
}
variable "stickiness" {
description = "A Stickiness block. Stickiness blocks are documented below. stickiness is only valid if used with Load Balancers of type Application"
type = map(string)
default = {}
}
variable "health_check" {
description = "A Health Check block."
type = any
default = {}
}
variable "target_type" {
description = "The type of target that you must specify when registering targets with this target group"
default = null
}
variable "tags" {
description = "Resources Tags"
type = map(string)
default = {}
}