mirror of
https://github.com/outbackdingo/terraform-hcloud-talos.git
synced 2026-01-27 10:20:30 +00:00
35 lines
853 B
HCL
35 lines
853 B
HCL
output "talosconfig" {
|
|
value = data.talos_client_configuration.this.talos_config
|
|
sensitive = true
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
value = local.kubeconfig
|
|
sensitive = true
|
|
}
|
|
|
|
output "talos_client_configuration" {
|
|
value = data.talos_client_configuration.this
|
|
}
|
|
|
|
output "talos_machine_configurations_control_plane" {
|
|
value = data.talos_machine_configuration.control_plane
|
|
sensitive = true
|
|
}
|
|
|
|
output "talos_machine_configurations_worker" {
|
|
value = data.talos_machine_configuration.worker
|
|
sensitive = true
|
|
}
|
|
|
|
output "kubeconfig_data" {
|
|
description = "Structured kubeconfig data to supply to other providers"
|
|
value = local.kubeconfig_data
|
|
sensitive = true
|
|
}
|
|
|
|
output "public_ipv4_list" {
|
|
description = "List of public IPv4 addresses of all control plane nodes"
|
|
value = local.control_plane_public_ipv4_list
|
|
}
|