24 lines
440 B
HCL
24 lines
440 B
HCL
output "provisioning_http_base_url" {
|
|
value = local.provisioning_http_base_url
|
|
}
|
|
|
|
output "preseed_url" {
|
|
value = local.preseed_url
|
|
}
|
|
|
|
output "pxe_rescue_url" {
|
|
value = "${local.provisioning_http_base_url}/rescue/"
|
|
}
|
|
|
|
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
|
|
}
|