my-homelab-configs/bootstrap/provisioning/outputs.tf

20 lines
355 B
HCL

output "provisioning_http_base_url" {
value = local.provisioning_http_base_url
}
output "preseed_url" {
value = local.preseed_url
}
output "pxe_boot_file" {
value = var.pxe_boot_file
}
output "tftp_root" {
value = local.tftp_root
}
output "pimox_template_vmid" {
value = var.pimox_template_builder_enabled ? var.pimox_template_vmid : null
}