This repository has been archived on 2024-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
iac/flatcars.tf
Matthew Baggett 661aa57a3c
Some checks failed
Trunk Cache / Trunk Cache (push) Failing after 2s
Trunk Upgrade / Upgrade Trunk (push) Failing after 1s
Trunk Check / Trunk Check Runner (push) Failing after 1s
Start proxmox experiment
2024-08-24 03:36:29 +02:00

19 lines
No EOL
394 B
HCL

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
}
}