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 eeee89a commit 8662685Copy full SHA for 8662685
.circleci/config.yml
@@ -37,9 +37,14 @@ jobs:
37
if [ -f '.tflint.hcl' ]; then
38
sed -i "/terraform_version =/s/\".*\"/\"${tf_ver}\"/" .tflint.hcl
39
else
40
+ # TODO: Create ignore_module section of all modules
41
+ # grep -h '[^a-zA-Z]source[ =]' *.tf | sed -r 's/.*=\s+//' | sort -u
42
echo -e "config {\nterraform_version = \"${tf_ver}\"\ndeep_check = true\n}" > .tflint.hcl
43
fi
44
+ echo "tflint configuration:"
45
cat .tflint.hcl
46
+ echo "Module list:"
47
+ grep -h '[^a-zA-Z]source[ =]' *.tf | sed -r 's/.*=\s+//' | sort -u
48
- run:
49
# Not supporting modules from registry ?? v0.5.4
50
# For now, must ignore in config file
0 commit comments