Files
terraform/proxmox/outputs.tf
T
2026-09-02 21:14:55 -04:00

16 lines
369 B
Terraform

# output "ch01" {
# description = "Container Host 01 VM details"
# value = {
# status = data.proxmox_vm.ch01.status
# }
# }
output "talos_schematic_id" {
value = talos_image_factory_schematic.this.id
}
output "debug" {
description = "For debugging resource or data key values"
value = data.talos_machine_configuration.this["cp01"]
sensitive = true
}