From d1e9e9f7ab3d279ac4c328228d4f59e02b31b2af Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Feb 2026 16:10:00 +0000 Subject: [PATCH] uncomment if: env.STAGE == 'prod' --- .github/workflows/deploy_terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 0e541c9f..4ac08e41 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -62,7 +62,7 @@ jobs: run: terraform plan -var-file=${STAGE}.tfvars -out=tfplan - name: Terraform Apply - # if: env.STAGE == 'prod' + if: env.STAGE == 'prod' working-directory: infrastructure/terraform/shared run: terraform apply -auto-approve tfplan