aboutsummaryrefslogtreecommitdiffstats
path: root/opentofu/outputs.tf
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-02-06 22:13:14 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-02-06 22:13:14 +0100
commit1e0f492b1d7f998cb7996e0f307c1e32a07cea36 (patch)
treea38841b266894d6f0b12776cee3f1b20b4469c83 /opentofu/outputs.tf
parentaeedb9882aa597a45dd43a1664d604c5f1a2d4f8 (diff)
downloadhomelab-iac-1e0f492b1d7f998cb7996e0f307c1e32a07cea36.tar.gz
homelab-iac-1e0f492b1d7f998cb7996e0f307c1e32a07cea36.tar.bz2
homelab-iac-1e0f492b1d7f998cb7996e0f307c1e32a07cea36.zip
opentofu: completely migrated k8-cluster.tf to modules
Successfully built on proxmox
Diffstat (limited to '')
-rw-r--r--opentofu/outputs.tf4
1 files changed, 2 insertions, 2 deletions
diff --git a/opentofu/outputs.tf b/opentofu/outputs.tf
index c6c3d88..f0c8b7a 100644
--- a/opentofu/outputs.tf
+++ b/opentofu/outputs.tf
@@ -1,7 +1,7 @@
locals {
all_vms = flatten([
- [proxmox_vm_qemu.k8s_cp],
- proxmox_vm_qemu.k8s_worker,
+ [module.k8s_control_plane.vm],
+ module.k8s_worker.vms,
[proxmox_vm_qemu.docker_server],
])
}