mirror of
https://github.com/GoodOlClint/PSProxmoxVE.git
synced 2026-09-03 18:55:33 +00:00
25746a94e3
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>
10 lines
278 B
Terraform
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"
|
|
}
|