boma/terraform/modules/proxmox_vm/outputs.tf

15 lines
330 B
Terraform
Raw Permalink Normal View History

output "vm_id" {
description = "Proxmox VM ID"
value = proxmox_virtual_environment_vm.this.vm_id
}
output "ipv4_address" {
description = "VM's static IPv4 address (without prefix length)"
value = split("/", var.ip_address)[0]
}
output "hostname" {
description = "VM hostname"
value = var.vm_name
}