diff --git a/proxmox/terraform/admin/admin.tf b/proxmox/terraform/admin/admin.tf --- a/proxmox/terraform/admin/admin.tf +++ b/proxmox/terraform/admin/admin.tf @@ -56,3 +56,37 @@ bridge = local.config["vlan"] }] } + + +module "dali" { + source = "../modules/node" + config = local.config + + template = "debian-bullseye-11.2-2022-01-03" + hostname = "dali" + description = "admin databases host" + hypervisor = "branly" + vmid = 144 + cores = "4" + memory = "16384" + balloon = 8192 + networks = [{ + id = 0 + ip = "192.168.50.50" + gateway = local.config["gateway_ip"] + macaddr = "" + bridge = local.config["vlan"] + }] + storages = [ + { + id = 0 + storage = "proxmox" + size = "32G" + }, + { + id = 1 + storage = "proxmox" + size = "200G" + } + ] +}