chore: change startup order for docker and omada

This commit is contained in:
Matthew McKinnon 2024-12-21 14:26:06 +10:00
parent 179b5f4465
commit 4afe9eac09
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@ resource "null_resource" "cloud_init_deb" {
connection { connection {
type = "ssh" type = "ssh"
user = "root" user = "root"
private_key = file("~/.ssh/pve2.comprofix.xyz") private_key = file("~/.ssh/homelab.comprofix.xyz")
host = "pve2.comprofix.xyz" host = "pve2.comprofix.xyz"
agent = true agent = true
} }
@ -46,7 +46,7 @@ resource "proxmox_vm_qemu" "docker" {
cpu = "x86-64-v2-AES" cpu = "x86-64-v2-AES"
bios = "ovmf" bios = "ovmf"
startup = "order=2,up=300" startup = "order=2"
# VM Memory Settings # VM Memory Settings

View File

@ -6,6 +6,7 @@ resource "proxmox_lxc" "omada" {
password = var.ci_password password = var.ci_password
unprivileged = false unprivileged = false
ostype = "debian" ostype = "debian"
onboot = true
start = true start = true
startup = "order=1000" startup = "order=1000"