this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(infra): use host CPU type for Proxmox VMs

Khue Doan a72395fd 68dc6845

+5
+4
infra/_modules/nixos/main.tf
··· 34 34 user = "root" 35 35 host = var.hosts["kube-1"].ipv6_address # TODO better way to get this 36 36 } 37 + 38 + depends_on = [ 39 + module.nixos 40 + ] 37 41 }
+1
infra/_modules/proxmox-vm/main.tf
··· 6 6 7 7 cpu { 8 8 cores = each.value.cpu 9 + type = "host" 9 10 } 10 11 11 12 memory {