-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathvariables.tf
More file actions
55 lines (43 loc) · 1.29 KB
/
variables.tf
File metadata and controls
55 lines (43 loc) · 1.29 KB
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
variable "primary_nsip" {
description = "Primary NSIP address"
}
variable "primary_vip_address" {
description = "Private ip address assigned to primary client interface"
}
variable "primary_vip_netmask" {
description = "Netmask for primary node client interface"
default = "255.255.255.0"
}
variable "primary_snip_address" {
description = "Private ip address assigned to primary server interface"
}
variable "primary_snip_netmask" {
description = "Netmask for primary node server interface"
default = "255.255.255.0"
}
variable "secondary_nsip" {
description = "Secondary NSIP address"
}
variable "secondary_vip_address" {
description = "Private ip address assigned to secondary client interface"
}
variable "secondary_vip_netmask" {
description = "Netmask for secondary node client interface"
default = "255.255.255.0"
}
variable "secondary_snip_address" {
description = "Private ip address assigned to secondary server interface"
}
variable "secondary_snip_netmask" {
description = "Netmask for secondary node server interface"
default = "255.255.255.0"
}
variable "password" {
description = "Password for the HA pair"
}
variable "ipset_name" {
description = "Name for the ipset"
}
variable "backend_service_address" {
description = "Ip address of the backend server"
}