Added Kubernetes config

This commit is contained in:
Max Pfeiffer
2024-11-09 12:56:03 +01:00
parent ee675221d9
commit c8df9ea935
13 changed files with 59 additions and 0 deletions

9
proxmox/outputs.tf Normal file
View File

@@ -0,0 +1,9 @@
output "talosconfig" {
value = data.talos_client_configuration.this.talos_config
sensitive = true
}
output "kubeconfig" {
value = talos_cluster_kubeconfig.this.kubeconfig_raw
sensitive = true
}