diff --git a/proxmox/terraform/production/production.tf b/proxmox/terraform/production/production.tf --- a/proxmox/terraform/production/production.tf +++ b/proxmox/terraform/production/production.tf @@ -137,7 +137,6 @@ value = module.worker18.summary } - module "provenance-client01" { source = "../modules/node" config = local.config @@ -158,3 +157,36 @@ bridge = "vmbr0" }] } + +module "scrubber1" { + source = "../modules/node" + vmid = 151 + config = local.config + hostname = "scrubber1" + description = "Scrubber checker services" + hypervisor = "branly" + sockets = "1" + cores = "4" + onboot = true + + memory = "4096" + balloon = "1024" + + networks = [{ + id = 0 + ip = "192.168.100.90" + gateway = local.config["gateway_ip"] + # macaddr = "" + bridge = "vmbr440" + }] + + storages = [{ + storage = "proxmox" + size = "30G" + } + ] +} + +output "scrubber1_summary" { + value = module.scrubber1.summary +}