initial commit

This commit is contained in:
2026-06-14 14:21:09 +07:00
commit 054835e2a7
17 changed files with 771 additions and 0 deletions

11
terraform/outputs.tf Normal file
View File

@@ -0,0 +1,11 @@
output "master_ip" {
value = "192.168.1.31"
}
output "worker_ips" {
value = { for k, v in proxmox_virtual_environment_vm.workers : k => v.initialization[0].ip_config[0].ipv4[0].address }
}
output "ssh_command" {
value = "ssh -i ${path.module}/k8s_terraform cloud-user@192.168.1.31"
}