15 lines
186 B
Terraform
15 lines
186 B
Terraform
variable "indexers" {
|
|
type = map(any)
|
|
default = {}
|
|
}
|
|
|
|
variable "download_clients" {
|
|
type = map(any)
|
|
default = {}
|
|
}
|
|
|
|
variable "tags" {
|
|
type = map(any)
|
|
default = {}
|
|
}
|