28 lines
506 B
HCL
28 lines
506 B
HCL
resource "proxmox_vm_qemu" "vm1" {
|
|
name = "terraform-vm"
|
|
target_node = "nuctyzyzen7-1"
|
|
clone = "ubuntu-2404-ci-template" # je bestaande template
|
|
full_clone = true
|
|
|
|
cpu {
|
|
cores = 2
|
|
sockets = 1
|
|
}
|
|
|
|
memory = 2048
|
|
|
|
network {
|
|
id = 0
|
|
model = "virtio"
|
|
bridge = "vmbr0"
|
|
}
|
|
|
|
# Cloud-init configuratie
|
|
ciuser = "martijn"
|
|
cipassword = "Gwh28dgcmp!"
|
|
ipconfig0 = "ip=dhcp"
|
|
searchdomain = "domain.local"
|
|
nameserver = "192.168.178.1"
|
|
|
|
}
|