10 lines
209 B
Terraform
10 lines
209 B
Terraform
|
|
output "talosconfig" {
|
||
|
|
value = data.talos_client_configuration.talosconfig.talos_config
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
output "kubeconfig" {
|
||
|
|
value = talos_cluster_kubeconfig.kubeconfig
|
||
|
|
sensitive = true
|
||
|
|
}
|