From 7882e85e57f140588bc9e3cc19360b0770040df2 Mon Sep 17 00:00:00 2001 From: Michael Balsillie Date: Wed, 9 Sep 2026 16:50:00 -0400 Subject: [PATCH] Make description conditional --- proxmox/archlinux/resources_proxmox.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox/archlinux/resources_proxmox.tf b/proxmox/archlinux/resources_proxmox.tf index 0881ac2..86e7780 100644 --- a/proxmox/archlinux/resources_proxmox.tf +++ b/proxmox/archlinux/resources_proxmox.tf @@ -46,7 +46,7 @@ resource "proxmox_virtual_environment_vm" "this" { type = "x86-64-v2" units = 100 } - description = "Arch Linux container host" + description = each.value.role == "container_host" ? "Arch Linux container host" : "Arch Linux download client" disk { aio = "io_uring" backup = true