feat: initial radarr terraform configuration #1

Merged
benvin merged 7 commits from feat/initial-config into main 2026-06-30 00:12:27 +10:00
Showing only changes of commit 267da8ffab - Show all commits
+7 -7
View File
@@ -1,34 +1,34 @@
variable "custom_formats" {
type = map(any)
type = any
default = {}
}
variable "quality_profiles" {
type = map(any)
type = any
default = {}
}
variable "download_clients" {
type = map(any)
type = any
default = {}
}
variable "indexers" {
type = map(any)
type = any
default = {}
}
variable "notifications" {
type = map(any)
type = any
default = {}
}
variable "delay_profiles" {
type = map(any)
type = any
default = {}
}
variable "root_folders" {
type = map(any)
type = any
default = {}
}