23 lines
587 B
Terraform
23 lines
587 B
Terraform
output "proxmox_scaffold_ready" {
|
|
description = "Indicates this directory is a placeholder scaffold for future Proxmox adoption."
|
|
value = true
|
|
}
|
|
|
|
output "proxmox_endpoint_configured" {
|
|
description = "Whether a non-empty endpoint has been provided."
|
|
value = var.proxmox_endpoint != ""
|
|
}
|
|
|
|
output "physical_hosts" {
|
|
description = "Physical host inventory used for documentation"
|
|
value = local.physical_hosts
|
|
}
|
|
|
|
|
|
output "infrastructure_inventory" {
|
|
description = "Combined infrastructure inventory"
|
|
value = {
|
|
physical_hosts = local.physical_hosts
|
|
}
|
|
}
|