2026-01-26 00:44:31 -05:00

15 lines
310 B
HCL

output "vm_id" {
value = proxmox_virtual_environment_vm.vm.vm_id
description = "The Proxmox VM ID"
}
output "ip_address" {
value = var.bridge_ip
description = "The bridge IP address"
}
output "name" {
value = proxmox_virtual_environment_vm.vm.name
description = "The VM name"
}