From b2e208d3cff5836aab8a94e7ccd16f2a2c74aac1 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 28 Jun 2026 23:31:47 +1000 Subject: [PATCH] fix: change variable types from map(any) to any Prevents type unification errors with heterogeneous resource configs. --- modules/prowlarr/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/prowlarr/variables.tf b/modules/prowlarr/variables.tf index 92ca70d..4f1436c 100644 --- a/modules/prowlarr/variables.tf +++ b/modules/prowlarr/variables.tf @@ -1,14 +1,14 @@ variable "indexers" { - type = map(any) + type = any default = {} } variable "download_clients" { - type = map(any) + type = any default = {} } variable "tags" { - type = map(any) + type = any default = {} }