diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-03 21:17:33 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-03-03 21:17:33 +0100 |
commit | f8f9666a8e630d6d64a883bca25ccc4ba98d73e4 (patch) | |
tree | 81204d58b1be9461c1af4489f7ccde0ec7e09aa0 /opentofu/outputs.tf | |
parent | cbe2665fbb9130ec3bd736f4428ea02966b125f4 (diff) |
tofu: Use static IPs, clean up vars, reduce workers
Diffstat (limited to 'opentofu/outputs.tf')
-rw-r--r-- | opentofu/outputs.tf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/opentofu/outputs.tf b/opentofu/outputs.tf index 09a05d8..a2de653 100644 --- a/opentofu/outputs.tf +++ b/opentofu/outputs.tf @@ -1,6 +1,9 @@ +# Define all VMs locals { all_vms = flatten([ [proxmox_virtual_environment_vm.docker_server], + [for vm in proxmox_virtual_environment_vm.k3s_master : vm], + [for vm in proxmox_virtual_environment_vm.k3s_worker : vm] ]) } |