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 8662685 commit 3a56591Copy full SHA for 3a56591
.circleci/config.yml
@@ -43,8 +43,12 @@ jobs:
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
+ echo "Newly created config:"
+ echo -e "config {\nterraform_version = \"${tf_ver}\"\ndeep_check = true\nignore_module = {\n"
48
+ for module in $(grep -h '[^a-zA-Z]source[ =]' *.tf | sed -r 's/.*=\s+//' | sort -u); do
49
+ echo "${module} = true"
50
+ done
51
+ echo "}}"
52
- run:
53
# Not supporting modules from registry ?? v0.5.4
54
# For now, must ignore in config file
0 commit comments