From b3afef90d40f0a668f5d0632970f4f35e5e6941b Mon Sep 17 00:00:00 2001 From: "Antoine R. Dumont (@ardumont)" <antoine.romain.dumont@gmail.com> Date: Tue, 5 Nov 2019 14:14:50 +0100 Subject: [PATCH] staging: Add worker2 (based on debian-10) --- proxmox/terraform/staging.tf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/proxmox/terraform/staging.tf b/proxmox/terraform/staging.tf index 29d2e1a..bb595dc 100644 --- a/proxmox/terraform/staging.tf +++ b/proxmox/terraform/staging.tf @@ -262,3 +262,21 @@ module "journal0" { output journal0_summary { value = "${module.journal0.summary}" } + +module "worker2" { + source = "./modules/node" + config = "${local.config}" + + hostname = "worker2" + description = "Loader/lister service node" + cores = "4" + memory = "16384" + network = { + ip = "192.168.128.11" + macaddr = "AA:57:27:51:75:18" + } +} + +output worker2_summary { + value = "${module.worker2.summary}" +} -- GitLab