From d182b00e750debb14cebd5776a74ecb551a55ee4 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 15 Feb 2025 13:01:59 -0600 Subject: [PATCH] Add serial --- infra/terraform/main.tf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/infra/terraform/main.tf b/infra/terraform/main.tf index 1258e58..b43ad03 100644 --- a/infra/terraform/main.tf +++ b/infra/terraform/main.tf @@ -67,7 +67,7 @@ resource "proxmox_vm_qemu" "haproxy" { boot = "order=virtio0" onboot = true sshkeys = local.sshkeys - vga = "serial0" + vga = "serial0" serial { id = 0 type = "socket" @@ -123,7 +123,9 @@ resource "proxmox_vm_qemu" "postgres" { boot = "order=virtio0" onboot = true sshkeys = local.sshkeys - vga = "serial0" + vga { + type = "serial0" + } serial { id = 0 type = "socket"