[deploy-opentofu]

This commit is contained in:
2025-09-07 22:37:17 +00:00
parent ba9652301a
commit 0aad474652

View File

@ -171,9 +171,9 @@ jobs:
- name: Plan
working-directory: infra/iac
run: |
# Find all .auto.tfvars in the secrets folder
# Find all .tfvars in the secrets folder
VAR_FILES=""
for f in ../secrets/secrets/*.auto.tfvars; do
for f in ../secrets/secrets/*.tfvars; do
VAR_FILES="$VAR_FILES -var-file=$f"
done
tofu plan $VAR_FILES -out=./tfplan | tee ./tfplan.txt