collection of terraform modules
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
373 B

output "lb_ipv4" {
value = hcloud_load_balancer.lb.ipv4
description = "Loadblancer IPv4 address"
}
output "lb_ipv6" {
value = hcloud_load_balancer.lb.ipv6
description = "Loadblancer IPv6 address"
}
output "dns_record" {
value = "*.k3s.${var.hetznerdns_zone}"
description = "Configured wildcard records (A and AAAA) pointed at Loadblancer."
}