Skip to content

Commit

Permalink
Add blackhole download client for radarr
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasmaroy committed Feb 29, 2024
1 parent de6d604 commit 41331fa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
12 changes: 12 additions & 0 deletions terraform/media/radarr/download_clients.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ resource "radarr_download_client_flood" "main" {
username = nonsensitive(local.secrets.rtorrent.username)
}

resource "radarr_download_client_torrent_blackhole" "main" {
enable = true
priority = 50
name = "Tdarr Blackhole"
magnet_file_extension = ".magnet"
save_magnet_files = false
read_only = false
watch_folder = "/media/Transcode/Blackhole"
torrent_folder = "/media/Transcode/"
remove_completed_downloads = true
}

resource "radarr_download_client_config" "main" {
check_for_finished_download_interval = 1
enable_completed_download_handling = true
Expand Down
1 change: 1 addition & 0 deletions terraform/media/radarr/indexers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ resource "radarr_indexer_torznab" "main" {
enable_automatic_search = true
enable_interactive_search = true
enable_rss = true
download_client_id = radarr_download_client_flood.main.id
name = each.value.name
priority = 25
}
Expand Down

0 comments on commit 41331fa

Please sign in to comment.