-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
63 lines (51 loc) · 1.62 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
variable "vdc_org_name" {}
variable "vdc_group_name" {}
variable "vdc_edge_name" {}
variable "service_engine_group_name" {
description = "The name of the NSX-T ALB Service Engine Group"
type = string
}
variable "pool_name" {
description = "The name of the NSX-T ALB Pool"
type = string
}
variable "virtual_service_name" {
description = "The name of the NSX-T ALB Virtual Service"
type = string
}
variable "virtual_service_description" {
description = "The description of the NSX-T ALB Virtual Service"
type = string
default = ""
}
variable "application_profile_type" {
description = "The type of application profile for the NSX-T ALB Virtual Service"
type = string
}
variable "is_transparent_mode_enabled" {
description = "Whether the transparent mode is enabled for the NSX-T ALB Virtual Service"
type = bool
default = false
}
variable "cert_alias" {
description = "The alias of the certificate from the VCD library"
type = string
default = ""
}
variable "ca_certificate_required" {
description = "Defines if a CA certificate is required for the virtual service. Set to true for HTTPS and L4_TLS types, and to false for HTTP and L4 types."
type = bool
}
variable "service_ports" {
description = "List of service ports configuration for the NSX-T ALB Virtual Service"
type = list(object({
start_port = number
end_port = optional(number)
type = string
ssl_enabled = optional(bool)
}))
}
variable "virtual_ip_address" {
description = "IP Address for the service to listen on"
type = string
}