Added virtual machines and talos config to create a three node cluster

This commit is contained in:
Max Pfeiffer
2024-11-09 12:32:59 +01:00
parent 9e2b64cc8c
commit ee675221d9
18 changed files with 411 additions and 1 deletions

9
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
}