feat: add prowlarr.voidstash.xyz DNS + tunnel rule

This commit is contained in:
Will Anderson
2026-04-12 02:34:35 -05:00
parent db980af27a
commit 538bba323d
2 changed files with 17 additions and 1 deletions
+8
View File
@@ -110,6 +110,14 @@ resource "cloudflare_tunnel_config" "legion" {
} }
} }
ingress_rule {
hostname = "prowlarr.voidstash.xyz"
service = "https://traefik.kube-system.svc:443"
origin_request {
no_tls_verify = true
}
}
# Catch-all — must be last # Catch-all — must be last
ingress_rule { ingress_rule {
service = "http_status:404" service = "http_status:404"
+9 -1
View File
@@ -1,4 +1,4 @@
# voidstash.xyz — private media stack (Stash + Whisparr) # voidstash.xyz — private media stack (Stash + Whisparr + Prowlarr)
# Zone created via API: ba74d72edbea8023ff4ed6cb27487154 # Zone created via API: ba74d72edbea8023ff4ed6cb27487154
# Nameservers delegated to Cloudflare from Porkbun # Nameservers delegated to Cloudflare from Porkbun
@@ -22,3 +22,11 @@ resource "cloudflare_record" "whisparr" {
content = "${var.cloudflare_tunnel_id}.cfargotunnel.com" content = "${var.cloudflare_tunnel_id}.cfargotunnel.com"
proxied = true proxied = true
} }
resource "cloudflare_record" "prowlarr_voidstash" {
zone_id = data.cloudflare_zone.voidstash.id
name = "prowlarr"
type = "CNAME"
content = "${var.cloudflare_tunnel_id}.cfargotunnel.com"
proxied = true
}