mapletree/terraform/main.tf
2026-01-28 09:43:57 -07:00

18 lines
No EOL
365 B
HCL

resource "proxmox_virtual_environment_container" "disposable_lxc" {
node_name = "pve1" # Which physical server to put it on
vm_id = 201
initialization {
hostname = "pve2-lxc1"
ip_config {
ipv4 {
address = "172.16.201.201/24"
gateway = "172.16.201.1"
}
}
}
clone {
vm_id = 9000 # YOUR GOLDEN IMAGE ID
}
}