From 53b7edcbdf9837db34f5d4cf9770d486e92d83d3 Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sun, 11 May 2025 19:12:44 +0200 Subject: [PATCH] fix for 285 --- infra/operator/main.tf | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/infra/operator/main.tf b/infra/operator/main.tf index 5203e78b..90baaa8a 100644 --- a/infra/operator/main.tf +++ b/infra/operator/main.tf @@ -31,10 +31,8 @@ locals { peripherals = { for name in [ "garage" ] : name => { - cfg = { - # enable if any user applications are enabled - enable = anytrue([for _, app in local.application_configs: try(app.enable, false)]) - } + # enable if any user applications are enabled + enable = anytrue([for _, app in local.application_configs: try(app.enable, false)]) } } }