-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
79 lines (66 loc) · 2.02 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
71
72
73
74
75
76
77
78
79
variable "name" {
description = "(Required) See the description in the readme"
type = string
}
variable "description" {
description = "(Optional) See the description in the readme"
type = string
default = ""
}
variable "vpc_no" {
description = "(Optional) Required If vpc_name does not exist. See the description in the readme"
type = string
default = null
}
variable "vpc_name" {
description = "(Optional) Required If vpc_no does not exist. See the description in the readme"
type = string
default = null
}
variable "protocol" {
description = "(Required) See the description in the readme"
type = string
}
variable "port" {
description = "(Required) See the description in the readme"
type = string
}
variable "algorithm_type" {
description = "(Optional) See the description in the readme"
type = string
default = "RR"
}
variable "use_sticky_session" {
description = "(Optional) See the description in the readme"
type = bool
default = false
}
variable "use_proxy_protocol" {
description = "(Optional) See the description in the readme"
type = bool
default = false
}
variable "target_type" {
description = "(Optional) See the description in the readme"
type = string
default = "VSVR"
}
variable "target_no_list" {
description = "(Optional) Required If target_instance_names does not exist. See the description in the readme"
type = list(any)
default = null
}
variable "target_instance_ids" {
description = "(Optional) Required If target_instance_names does not exist. Same with target_no_list. See the description in the readme"
type = list(any)
default = null
}
variable "target_instance_names" {
description = "(Optional) Required If target_no_list does not exist. See the description in the readme"
type = list(any)
default = null
}
variable "health_check" {
description = "(Required) See the description in the readme"
type = map(any)
}