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

Prevents type unification errors with heterogeneous resource configs.
This commit is contained in:
2026-06-28 23:31:47 +10:00
parent a59646c44a
commit b2e208d3cf
+3 -3
View File
@@ -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 = {}
}