20 lines
535 B
HCL
20 lines
535 B
HCL
output "vm_id" {
|
|
description = "The Proxmox VM ID"
|
|
value = proxmox_virtual_environment_vm.this.vm_id
|
|
}
|
|
|
|
output "name" {
|
|
description = "The VM hostname"
|
|
value = proxmox_virtual_environment_vm.this.name
|
|
}
|
|
|
|
output "ipv4_addresses" {
|
|
description = "All IPv4 addresses reported by the QEMU agent"
|
|
value = proxmox_virtual_environment_vm.this.ipv4_addresses
|
|
}
|
|
|
|
output "mac_addresses" {
|
|
description = "MAC addresses of the network interfaces"
|
|
value = proxmox_virtual_environment_vm.this.mac_addresses
|
|
}
|