81b28c72b1
The devopsarr sonarr provider cannot handle float min/max values in SizeSpecification as set element keys. Remove size custom formats from terraform management and look up their IDs via a data source instead. Also change variable types from map(any) to any to allow heterogeneous quality profile structures.
35 lines
428 B
Terraform
35 lines
428 B
Terraform
variable "custom_formats" {
|
|
type = any
|
|
default = {}
|
|
}
|
|
|
|
variable "quality_profiles" {
|
|
type = any
|
|
default = {}
|
|
}
|
|
|
|
variable "download_clients" {
|
|
type = any
|
|
default = {}
|
|
}
|
|
|
|
variable "indexers" {
|
|
type = any
|
|
default = {}
|
|
}
|
|
|
|
variable "notifications" {
|
|
type = any
|
|
default = {}
|
|
}
|
|
|
|
variable "delay_profiles" {
|
|
type = any
|
|
default = {}
|
|
}
|
|
|
|
variable "root_folders" {
|
|
type = any
|
|
default = {}
|
|
}
|