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

@@ -166,8 +166,9 @@ resource "local_file" "hetzner_csi_config" {
resource "local_file" "traefik_config" {
content = templatefile("${path.module}/templates/traefik_config.yaml.tpl", {
lb_server_type = var.lb_server_type
location = var.location
lb_disable_ipv6 = var.lb_disable_ipv6
lb_server_type = var.lb_server_type
location = var.location
})
filename = "${path.module}/templates/rendered/traefik_config.yaml"
file_permission = "0644"