Files
VMServiceTemplate/terraform/output.tf
2026-05-20 22:59:27 +01:00

12 lines
156 B
HCL

output "vm_name" {
value = var.vm_name
}
output "vm_ipv4_address" {
value = module.vm.vm_ipv4_address
}
output "vm_tags" {
value = local.all_tags
}