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" {
|
||||
type = map(any)
|
||||
type = any
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "download_clients" {
|
||||
type = map(any)
|
||||
type = any
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "tags" {
|
||||
type = map(any)
|
||||
type = any
|
||||
default = {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user