15 lines
365 B
HCL
15 lines
365 B
HCL
output "container_id" {
|
|
description = "The VMID of the Foundry LXC container."
|
|
value = proxmox_virtual_environment_container.foundry.vm_id
|
|
}
|
|
|
|
output "hostname" {
|
|
description = "The hostname of the container."
|
|
value = var.hostname
|
|
}
|
|
|
|
output "ip_address" {
|
|
description = "The configured IP address (or 'dhcp')."
|
|
value = var.ip_address
|
|
}
|