From 5ac7f4d2b8e70f10898d3e511be4090134069483 Mon Sep 17 00:00:00 2001 From: Uwe Kamper Date: Sat, 21 Feb 2026 20:52:17 +0100 Subject: [PATCH 1/2] add VM for openmct --- proxmox/113-openmct.tf | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 proxmox/113-openmct.tf diff --git a/proxmox/113-openmct.tf b/proxmox/113-openmct.tf new file mode 100644 index 0000000..11c2741 --- /dev/null +++ b/proxmox/113-openmct.tf @@ -0,0 +1,27 @@ +module "mecci_vm" { + source = "../modules/vm" + node = var.node + pool = var.pool + + name = "openmct" + vm_id = "113" + + clone = data.proxmox_virtual_environment_vm.debian_cloud_vm_template.vm_id + + cores = 2 + memory = 2048 + + disks = [{ + size_gb = 48 + storage = var.storage.disk + }] + + network = { + bridge = var.network.bridge + internal_bridge = proxmox_virtual_environment_network_linux_bridge.internal_bridge.name + } + + admins = [ + local.users["uk"] + ] +} From cce38ce3a0ac309368c2e19258db4a55b5b03c4c Mon Sep 17 00:00:00 2001 From: Uwe Kamper Date: Tue, 24 Feb 2026 02:09:22 +0100 Subject: [PATCH 2/2] fix copy-paste err --- proxmox/113-openmct.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox/113-openmct.tf b/proxmox/113-openmct.tf index 11c2741..f7b9397 100644 --- a/proxmox/113-openmct.tf +++ b/proxmox/113-openmct.tf @@ -1,4 +1,4 @@ -module "mecci_vm" { +module "openmct_vm" { source = "../modules/vm" node = var.node pool = var.pool