From 157212e6c99e9cedca0e7bfc32835db61d2ecae2 Mon Sep 17 00:00:00 2001 From: James Fenn Date: Sat, 10 Jan 2026 14:54:22 -0500 Subject: [PATCH 1/2] set SSL SNI hostname to fix staging CDN --- modules/playful-web/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/playful-web/main.tf b/modules/playful-web/main.tf index d7788a7..492c650 100644 --- a/modules/playful-web/main.tf +++ b/modules/playful-web/main.tf @@ -30,6 +30,7 @@ resource "fastly_service_vcl" "cdn" { port = 443 prefer_ipv6 = true ssl_cert_hostname = var.host + ssl_sni_hostname = var.host use_ssl = true } From 63702959e857ec1b04b53355f22b22489697e67e Mon Sep 17 00:00:00 2001 From: James Fenn Date: Sat, 10 Jan 2026 14:55:19 -0500 Subject: [PATCH 2/2] surround summary output in a codeblock --- .github/workflows/tofu.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tofu.yml b/.github/workflows/tofu.yml index 66bd124..d46cefd 100644 --- a/.github/workflows/tofu.yml +++ b/.github/workflows/tofu.yml @@ -52,13 +52,13 @@ jobs: - name: Tofu Plan (Staging) run: | { PLAN=$(tofu plan -var-file="env-staging.tfvars" -no-color | tee /dev/fd/5 || true); } 5>&1 - echo "
OpenTofu Plan (Staging)$PLAN
" >> $GITHUB_STEP_SUMMARY + echo "
OpenTofu Plan (Staging)
$PLAN
" >> $GITHUB_STEP_SUMMARY - name: Tofu Init (Prod) run: tofu init -var-file="env-prod.tfvars" -input=false -reconfigure - name: Tofu Plan (Prod) run: | { PLAN=$(tofu plan -var-file="env-prod.tfvars" -no-color | tee /dev/fd/5 || true); } 5>&1 - echo "
OpenTofu Plan (Prod)$PLAN
" >> $GITHUB_STEP_SUMMARY + echo "
OpenTofu Plan (Prod)
$PLAN
" >> $GITHUB_STEP_SUMMARY deploy-staging: name: "Deploy (Staging)"