Files
homelab-v/tofu/kubernetes/talos/output.tofu
T
Vegard Hagen f47309b3d1 fix(tofu): switching to .tofu extension
Picking sides

No real functional change except the cute tofu icon in my IDE instead of the purple T
2025-04-18 17:19:15 +02:00

19 lines
376 B
HCL

output "machine_secrets" {
value = talos_machine_secrets.this.machine_secrets
sensitive = true
}
output "machine_config" {
value = data.talos_machine_configuration.this
}
output "client_configuration" {
value = data.talos_client_configuration.this
sensitive = true
}
output "kube_config" {
value = talos_cluster_kubeconfig.this
sensitive = true
}