From eeee851fe26ad48fea4bfdf635232522ea690301 Mon Sep 17 00:00:00 2001
From: Matt Reeves <admin@mafyuh.io>
Date: Fri, 14 Feb 2025 00:54:57 -0500
Subject: [PATCH] Update tofu workflow to log plan output to stderr

---
 .forgejo/workflows/tofu.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.forgejo/workflows/tofu.yml b/.forgejo/workflows/tofu.yml
index 35c81c5..9bf0296 100644
--- a/.forgejo/workflows/tofu.yml
+++ b/.forgejo/workflows/tofu.yml
@@ -69,7 +69,7 @@ jobs:
         env:
           AWS_ACCESS_KEY_ID: ${{ steps.bitwarden-secrets.outputs.aws_access_key_id }}
           AWS_SECRET_ACCESS_KEY: ${{ steps.bitwarden-secrets.outputs.aws_secret_access_key }}
-        run: tofu plan -no-color -parallelism=1 -out=tfplan
+        run: tofu plan -no-color -parallelism=1 -out=tfplan | tee /dev/stderr
 
       - name: Apply the Plan
         if: success()