ingress: don't use private ip, make ipv6 optional

This commit is contained in:
phaer
2022-01-25 15:05:29 +01:00
parent f6046c4f96
commit b0838c8a01
3 changed files with 15 additions and 3 deletions

View File

@@ -34,6 +34,12 @@ variable "lb_server_type" {
type = string
}
variable "lb_disable_ipv6" {
description = "Disable ipv6 for the load balancer"
type = bool
default = false
}
variable "servers_num" {
description = "Number of control plane nodes."
type = number