Add infrastructure packages: terraform-pve, ansible-push, wolfstack-keepalived, terraform-pve-vm

This commit is contained in:
Artemis
2026-06-14 19:52:52 -04:00
parent e54307d46d
commit 6f4c54cdbb
49 changed files with 2031 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
output "vmid" {
description = "LXC VMID"
value = proxmox_virtual_environment_container.this.vm_id
}
output "hostname" {
description = "LXC hostname"
value = var.hostname
}
output "ipv4" {
description = "LXC static IPv4 with CIDR"
value = var.ipv4
}
output "node" {
description = "Target PVE node"
value = var.node
}