terraform-incus/modules/instance/outputs.tf
Ben Vincent cb67816eee feat: initial commit
- have been working on this for some time now
2025-05-30 22:36:55 +10:00

13 lines
275 B
HCL

#output "vm_metadata" {
# value = {
# ipaddress = incus_instance.this.ipv4_address
# gateway = local.gateway_ip
# hostname = "${var.name}.${var.cobbler_domain}"
# interface = "eth0"
# }
#}
output "hostname" {
value = "${var.name}.${var.cobbler_domain}"
}