Files
terraform-prowlarr/modules/prowlarr/variables.tf
T
unkinben b2e208d3cf
ci/woodpecker/pr/pre-commit Pipeline failed
ci/woodpecker/pr/plan Pipeline was successful
fix: change variable types from map(any) to any
Prevents type unification errors with heterogeneous resource configs.
2026-06-28 23:31:47 +10:00

15 lines
171 B
Terraform

variable "indexers" {
type = any
default = {}
}
variable "download_clients" {
type = any
default = {}
}
variable "tags" {
type = any
default = {}
}