mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
Picking sides No real functional change except the cute tofu icon in my IDE instead of the purple T
19 lines
376 B
HCL
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
|
|
}
|