Files
PSProxmoxVE/tests/infrastructure/terraform.tfvars.example
T
Clint Branham 8c963fb684 feat(infra): add Terraform config for nested PVE test VM
Provisions a throwaway nested Proxmox VE instance on an existing host
using bpg/proxmox provider. Includes unattended install via answer file,
API wait script, and automatic API token creation. Designed for CI-driven
integration test environments.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 16:15:31 -05:00

19 lines
581 B
Plaintext

# Connection to your existing Proxmox host
proxmox_endpoint = "https://pve.example.com:8006"
proxmox_api_token = "root@pam!terraform=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
target_node = "pve"
# Path to PVE ISO (download from proxmox.com/en/downloads)
iso_file = "/path/to/proxmox-ve_9.1-1.iso"
# Network config for nested PVE (must be routable from CI runner)
test_vm_ip = "192.168.1.200"
test_vm_gateway = "192.168.1.1"
# Optional overrides
# cores = 4
# memory = 8192
# disk_size = 64
# disk_storage = "local-lvm"
# network_bridge = "vmbr0"