mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-09 08:41:30 -05:00
Add serial
This commit is contained in:
parent
156a75c0a0
commit
004d2d5155
1 changed files with 10 additions and 0 deletions
|
|
@ -67,6 +67,11 @@ resource "proxmox_vm_qemu" "haproxy" {
|
||||||
boot = "order=virtio0"
|
boot = "order=virtio0"
|
||||||
onboot = true
|
onboot = true
|
||||||
sshkeys = local.sshkeys
|
sshkeys = local.sshkeys
|
||||||
|
vga = "serial0"
|
||||||
|
serial {
|
||||||
|
id = 0
|
||||||
|
type = "socket"
|
||||||
|
}
|
||||||
disks {
|
disks {
|
||||||
ide {
|
ide {
|
||||||
ide2 {
|
ide2 {
|
||||||
|
|
@ -118,6 +123,11 @@ resource "proxmox_vm_qemu" "postgres" {
|
||||||
boot = "order=virtio0"
|
boot = "order=virtio0"
|
||||||
onboot = true
|
onboot = true
|
||||||
sshkeys = local.sshkeys
|
sshkeys = local.sshkeys
|
||||||
|
vga = "serial0"
|
||||||
|
serial {
|
||||||
|
id = 0
|
||||||
|
type = "socket"
|
||||||
|
}
|
||||||
disks {
|
disks {
|
||||||
ide {
|
ide {
|
||||||
ide2 {
|
ide2 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue