diff --git a/.gitea/workflows/ci-test.yaml b/.gitea/workflows/ci-test.yaml index da348b4..9f70113 100644 --- a/.gitea/workflows/ci-test.yaml +++ b/.gitea/workflows/ci-test.yaml @@ -37,7 +37,7 @@ jobs: run: | # Find all .auto.tfvars in the secrets folder VAR_FILES="" - for f in ../secrets/*.auto.tfvars; do + for f in ../secrets/secrets/*.auto.tfvars; do VAR_FILES="$VAR_FILES -var-file=$f" done tofu plan $VAR_FILES -out=tfplan @@ -55,7 +55,7 @@ jobs: run: | # Find all .auto.tfvars in the secrets folder VAR_FILES="" - for f in ../secrets/*.auto.tfvars; do + for f in ../secrets/secrets/*.auto.tfvars; do VAR_FILES="$VAR_FILES -var-file=$f" done tofu apply $VAR_FILES -auto-approve tfplan \ No newline at end of file