10 lines
306 B
Terraform
10 lines
306 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 != ""
|
|
}
|