diff --git a/proxmox/terraform/staging/staging.tf b/proxmox/terraform/staging/staging.tf --- a/proxmox/terraform/staging/staging.tf +++ b/proxmox/terraform/staging/staging.tf @@ -492,3 +492,39 @@ output "poc-rancher-sw1_summary" { value = module.poc-rancher-sw1.summary } + +module "maven-exporter0" { + source = "../modules/node" + template = "debian-bullseye-11.0-2021-09-09" # otherwise to use more recent template + config = local.config + hostname = "maven-exporter0" + description = "Maven index exporter to run containers and expose export.fld files" + hypervisor = "pompidou" + sockets = "1" + cores = "4" + onboot = true + + memory = "4096" + balloon = "1024" + + networks = [{ + id = 0 + ip = "192.168.130.70" + gateway = local.config["gateway_ip"] + macaddr = "" + bridge = "vmbr443" + }] + + storages = [{ + storage = "local" + size = "20G" + }, { + storage = "local" + size = "50G" + } + ] +} + +output "maven-exporter0_summary" { + value = module.maven-exporter0.summary +}