IAC/flatcars.tf_
Matthew Baggett ddde0c525a
Some checks failed
Trunk Cache / Trunk Cache (push) Has been cancelled
Trunk Check / Trunk Check Runner (push) Has been cancelled
Trunk Upgrade / Upgrade Trunk (push) Has been cancelled
Refactorin
2025-01-09 09:01:54 +01:00

19 lines
No EOL
394 B
Text

resource "proxmox_vm_qemu" "flatcar_test" {
name = "flatcar-test"
target_node = "longhorn"
iso = "local_vms/iso/flatcar_production_iso_image.iso"
cores = 2
memory = 4096
automatic_reboot = true
disk {
type = "ide"
storage = "local_vms"
size = "32G"
backup = false
}
network {
model = "e1000"
bridge = "vmbr13"
firewall = false
}
}