Added terraform for lightning-lane

This commit is contained in:
2026-03-07 21:18:36 -06:00
parent 7d7129632f
commit a349ce13f8
5 changed files with 178 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# ─── Outputs ─────────────────────────────────────────────────────────────────
output "vm_id" {
description = "Proxmox VM ID"
value = module.vm.vm_id
}
output "hostname" {
description = "VM hostname"
value = var.hostname
}
output "ip_address" {
description = "VM IP address"
value = var.ip_address
}
output "target_node" {
description = "Proxmox node the VM is placed on"
value = var.target_node
}