fix: change variable types from map(any) to any
ci/woodpecker/pr/pre-commit Pipeline failed
ci/woodpecker/pr/plan Pipeline was successful

Allows heterogeneous quality profile and custom format structures
without type unification errors.
This commit is contained in:
2026-06-28 23:31:45 +10:00
parent a70b902e3b
commit 267da8ffab
+7 -7
View File
@@ -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 = {}
}