This commit is contained in:
DeveloperDurp 2026-05-11 05:35:14 -05:00
parent 6ea3a36527
commit 6e2e59e3ad

View file

@ -1,18 +1,57 @@
module "k3s_masters" { resource "proxmox_vm_qemu" "postgres" {
# Use 'git::' prefix and append the branch/tag/commit with '?ref='
source = "git::https://gitlab.durp.info/durfy/modules/terraform/proxmox-vm.git?ref=main"
# Inputs
count = local.postgres.count count = local.postgres.count
vm_names = local.postgres.name ciuser = "administrator"
target_nodes = local.postgres.node vmid = "${local.vlan}${local.postgres.ip[count.index]}"
vm_ips = local.postgres.ip name = local.postgres.name[count.index]
vlan = local.vlan target_node = local.postgres.node[count.index]
template = local.template clone = local.template
storage = local.postgres.storage tags = local.postgres.tags
qemu_os = "l26"
full_clone = true
os_type = "cloud-init"
agent = 1
cores = local.postgres.cores cores = local.postgres.cores
sockets = 1
cpu_type = "host"
memory = local.postgres.memory memory = local.postgres.memory
scsihw = "virtio-scsi-pci"
#bootdisk = "scsi0"
boot = "order=virtio0"
onboot = true
sshkeys = local.sshkeys sshkeys = local.sshkeys
dnsserver = local.dnsserver vga {
drive_size = local.postgres.drive type = "serial0"
}
serial {
id = 0
type = "socket"
}
disks {
ide {
ide2 {
cloudinit {
storage = local.postgres.storage
}
}
}
virtio {
virtio0 {
disk {
size = local.postgres.drive
format = local.format
storage = local.postgres.storage
}
}
}
}
network {
id = 0
model = "virtio"
bridge = "vmbr0"
tag = local.vlan
}
#Cloud Init Settings
ipconfig0 = "ip=192.168.${local.vlan}.${local.postgres.ip[count.index]}/24,gw=192.168.${local.vlan}.1"
searchdomain = "durp.loc"
nameserver = local.dnsserver
} }