From 4ff861408a368ed4ea6f4ec8e943ec59283b13eb Mon Sep 17 00:00:00 2001 From: James Fenn Date: Sun, 11 Jan 2026 19:56:13 -0500 Subject: [PATCH] add https prefix to redirect location --- modules/playful-web/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/playful-web/main.tf b/modules/playful-web/main.tf index 2b12af7..1c4c292 100644 --- a/modules/playful-web/main.tf +++ b/modules/playful-web/main.tf @@ -178,7 +178,7 @@ resource "porkbun_url_forward" "redirect" { domain = var.domain subdomain = "www" include_path = true - location = var.domain + location = "https://${var.domain}" type = "permanent" wildcard = false }