This commit is contained in:
2025-02-16 13:06:08 -06:00
parent ca44e683f6
commit 37fdb0a1ac

View File

@@ -7,7 +7,7 @@ resource "proxmox_vm_qemu" "k3smaster" {
name = local.k3smaster.name[count.index] name = local.k3smaster.name[count.index]
target_node = local.k3smaster.node[count.index] target_node = local.k3smaster.node[count.index]
tags = local.k3smaster.tags tags = local.k3smaster.tags
full_clone = false full_clone = false
qemu_os = "l26" qemu_os = "l26"
os_type = "cloud-init" os_type = "cloud-init"
agent = 1 agent = 1
@@ -16,9 +16,9 @@ resource "proxmox_vm_qemu" "k3smaster" {
cpu_type = "host" cpu_type = "host"
memory = local.k3smaster.memory memory = local.k3smaster.memory
scsihw = "virtio-scsi-pci" scsihw = "virtio-scsi-pci"
boot = "order=virtio0" boot = "order=virtio0"
onboot = true onboot = true
sshkeys = local.sshkeys sshkeys = local.sshkeys
vga { vga {
type = "serial0" type = "serial0"
} }