9 lines
215 B
Terraform
9 lines
215 B
Terraform
|
|
output "talosconfig" {
|
||
|
|
value = data.talos_client_configuration.this.talos_config
|
||
|
|
sensitive = true
|
||
|
|
}
|
||
|
|
|
||
|
|
output "kubeconfig" {
|
||
|
|
value = data.talos_cluster_kubeconfig.this.kubeconfig_raw
|
||
|
|
sensitive = true
|
||
|
|
}
|