Files
PSProxmoxVE/tests/infrastructure/outputs.tf
T
goodolclint-claude[bot] 25746a94e3 ci: storage VM moves to DHCP and is addressed by FQDN (1/2)
The repo stops holding opinions about CI VLAN addressing: the VM boots
via DHCP with hostname pvetest-storage (deterministic MAC for an
optional reservation), registers in the operator's CI DNS zone, and
everything addresses it by STORAGE_VM_FQDN. Replaces the static-IP +
explicit-DNS variables.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-31 20:49:48 +00:00

10 lines
278 B
Terraform

output "pve_vm_ids" {
description = "Map of instance key to VM ID"
value = { for k, v in proxmox_virtual_environment_vm.nested_pve : k => v.vm_id }
}
output "pve_test_node_name" {
value = "pve"
description = "Default node name inside a fresh PVE install"
}