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 5f595d3 commit 1f09801Copy full SHA for 1f09801
scripts/terraform-test.sh
@@ -10,16 +10,16 @@ do
10
terraform -chdir=$f init -upgrade
11
~/.init-env
12
source ./.terraform_profile
13
- echo "---> plan testing"
14
echo ""
+ echo "---> Plan Testing"
15
cp scripts/plan.tftest.hcl $f/
16
terraform -chdir=$f test test -verbose
17
if [[ $? -ne 0 ]]; then
18
success=false
19
echo -e "\033[31m[ERROR]\033[0m: running terraform test for plan failed."
20
else
21
22
+ echo "---> Apply Testing"
23
rm -rf scripts/plan.tftest.hcl
24
cp scripts/apply.tftest.hcl $f/
25
terraform -chdir=$f test test
0 commit comments