15 lines
330 B
Terraform
15 lines
330 B
Terraform
|
|
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
|
||
|
|
}
|