Files
terraform-radarr/modules/radarr/variables.tf
T
unkinben a00affbf46
ci/woodpecker/pr/pre-commit Pipeline failed
ci/woodpecker/pr/plan Pipeline failed
feat: initial radarr terraform configuration
2026-06-28 22:17:12 +10:00

35 lines
463 B
Terraform

variable "custom_formats" {
type = map(any)
default = {}
}
variable "quality_profiles" {
type = map(any)
default = {}
}
variable "download_clients" {
type = map(any)
default = {}
}
variable "indexers" {
type = map(any)
default = {}
}
variable "notifications" {
type = map(any)
default = {}
}
variable "delay_profiles" {
type = map(any)
default = {}
}
variable "root_folders" {
type = map(any)
default = {}
}