Files
unkinben 267da8ffab
ci/woodpecker/pr/pre-commit Pipeline failed
ci/woodpecker/pr/plan Pipeline was successful
fix: change variable types from map(any) to any
Allows heterogeneous quality profile and custom format structures
without type unification errors.
2026-06-28 23:31:45 +10:00

35 lines
428 B
Terraform

variable "custom_formats" {
type = any
default = {}
}
variable "quality_profiles" {
type = any
default = {}
}
variable "download_clients" {
type = any
default = {}
}
variable "indexers" {
type = any
default = {}
}
variable "notifications" {
type = any
default = {}
}
variable "delay_profiles" {
type = any
default = {}
}
variable "root_folders" {
type = any
default = {}
}