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 @@ -247,3 +247,27 @@ output "rp0_summary" { value = module.rp0.summary } + + +module "search-esnode0" { + source = "../modules/node" + config = local.config + hypervisor = "branly" + + hostname = "search-esnode0" + description = "Node to host the elasticsearch instance" + cores = "2" + memory = "16834" + balloon = 1024 + networks = [{ + id = 0 + ip = "192.168.130.80" + gateway = local.config["gateway_ip"] + macaddr = "" + bridge = "vmbr443" + }] +} + +output "search-esnode0_summary" { + value = module.search-esnode0.summary +}