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)]) } } }