From 267da8ffabda187d93db6f3bf9747745a4afe872 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 28 Jun 2026 23:31:45 +1000 Subject: [PATCH] fix: change variable types from map(any) to any Allows heterogeneous quality profile and custom format structures without type unification errors. --- modules/radarr/variables.tf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/radarr/variables.tf b/modules/radarr/variables.tf index 67d117a..1782c9f 100644 --- a/modules/radarr/variables.tf +++ b/modules/radarr/variables.tf @@ -1,34 +1,34 @@ variable "custom_formats" { - type = map(any) + type = any default = {} } variable "quality_profiles" { - type = map(any) + type = any default = {} } variable "download_clients" { - type = map(any) + type = any default = {} } variable "indexers" { - type = map(any) + type = any default = {} } variable "notifications" { - type = map(any) + type = any default = {} } variable "delay_profiles" { - type = map(any) + type = any default = {} } variable "root_folders" { - type = map(any) + type = any default = {} }