Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tofu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 "<details><summary>OpenTofu Plan (Staging)</summary><code>$PLAN</code></details>" >> $GITHUB_STEP_SUMMARY
echo "<details><summary>OpenTofu Plan (Staging)</summary><pre><code>$PLAN</code></pre></details>" >> $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 "<details><summary>OpenTofu Plan (Prod)</summary><code>$PLAN</code></details>" >> $GITHUB_STEP_SUMMARY
echo "<details><summary>OpenTofu Plan (Prod)</summary><pre><code>$PLAN</code></pre></details>" >> $GITHUB_STEP_SUMMARY

deploy-staging:
name: "Deploy (Staging)"
Expand Down
1 change: 1 addition & 0 deletions modules/playful-web/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down
Loading