feat: initial radarr terraform configuration
ci/woodpecker/pr/pre-commit Pipeline failed
ci/woodpecker/pr/plan Pipeline failed

This commit is contained in:
2026-06-28 22:17:12 +10:00
parent b19f04e69d
commit a00affbf46
24 changed files with 634 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
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 = {}
}