File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ output "agents_public_ipv4" {
28
28
}
29
29
30
30
output "ingress_public_ipv4" {
31
- description = " The public IPv4 address of the Hetzner load balancer"
31
+ description = " The public IPv4 address of the Hetzner load balancer (with fallback to first control plane node) "
32
32
value = local. has_external_load_balancer ? module. control_planes [keys (module. control_planes )[0 ]]. ipv4_address : hcloud_load_balancer. cluster [0 ]. ipv4
33
33
}
34
34
35
35
output "ingress_public_ipv6" {
36
- description = " The public IPv6 address of the Hetzner load balancer"
37
- value = ( local. has_external_load_balancer || var. load_balancer_disable_ipv6 ) ? null : hcloud_load_balancer. cluster [0 ]. ipv6
36
+ description = " The public IPv6 address of the Hetzner load balancer (with fallback to first control plane node) "
37
+ value = local. has_external_load_balancer ? module . control_planes [ keys (module . control_planes )[ 0 ]] . ipv6_address : ( var. load_balancer_disable_ipv6 ? null : hcloud_load_balancer. cluster [0 ]. ipv6 )
38
38
}
39
39
40
40
output "k3s_endpoint" {
You can’t perform that action at this time.
0 commit comments