fix: change variable types from map(any) to any
Prevents type unification errors with heterogeneous resource configs.
This commit is contained in:
@@ -1,14 +1,14 @@
|
|||||||
variable "indexers" {
|
variable "indexers" {
|
||||||
type = map(any)
|
type = any
|
||||||
default = {}
|
default = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "download_clients" {
|
variable "download_clients" {
|
||||||
type = map(any)
|
type = any
|
||||||
default = {}
|
default = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "tags" {
|
variable "tags" {
|
||||||
type = map(any)
|
type = any
|
||||||
default = {}
|
default = {}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user