mirror of
https://github.com/GoodOlClint/PSProxmoxVE.git
synced 2026-09-03 18:55:33 +00:00
f48f0ea9ae
The nested PVE guests live on an isolated VLAN with no route to the runner network (ADR 0032, homelab repo), and the runner-hosted Docker services died with each ephemeral ARC pod anyway. A small cloud-image VM in the ci pool now serves NFS, iSCSI, and the auto-install answer files from inside the sandbox. Includes fixes from Codex and in-house review: bpg provider >= 0.79.0, serial console for the resized cloud image, key-based SSH (cloud images refuse password auth), CIDR validation, storage VM in the headroom check, docker socket mounts removed. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
15 lines
408 B
Terraform
15 lines
408 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"
|
|
}
|
|
|
|
output "storage_vm_ip" {
|
|
description = "Static address of the shared NFS/iSCSI storage VM"
|
|
value = var.storage_vm_ip
|
|
}
|