We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f37c8 commit 9bbadd2Copy full SHA for 9bbadd2
.github/workflows/e2e.yml
@@ -30,6 +30,5 @@ jobs:
30
- name: test pr
31
run: |
32
bash scripts/terraform-install.sh
33
- echo ${{ secrets.PROFILE }}
34
CHANGED_FOLDERS="${{ steps.changed-files.outputs.all_changed_files }}"
35
bash scripts/terraform-test.sh ${CHANGED_FOLDERS}
scripts/terraform-test.sh
@@ -8,7 +8,8 @@ do
8
f=$(echo $f | xargs echo -n)
9
echo "===> Terraform testing in" $f
10
terraform -chdir=$f init -upgrade
11
- source ~/.terraform_profile
+ ~/.init-env
12
+ source ./.terraform_profile
13
cp scripts/plan.tftest.hcl $f/
14
terraform -chdir=$f test test -verbose
15
if [[ $? -ne 0 ]]; then
0 commit comments