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 6debb6a commit 750d906Copy full SHA for 750d906
.circleci/config.yml
@@ -43,11 +43,13 @@ jobs:
43
fi
44
echo "tflint configuration modified:"
45
cat .tflint.hcl
46
- {echo -e "config {\nterraform_version = \"${tf_ver}\"\ndeep_check = true\nignore_module = {"
+ {
47
+ echo -e "config {\nterraform_version = \"${tf_ver}\"\ndeep_check = true\nignore_module = {"
48
for module in $(grep -h '[^a-zA-Z]source[ =]' *.tf | sed -r 's/.*=\s+//' | sort -u); do
49
echo "${module} = true"
50
done
- echo "}}"} > .tflint.hcl
51
+ echo "}}"
52
+ } > .tflint.hcl
53
echo "tflint configuration NEW:"
54
55
- run:
0 commit comments