mirror of
https://github.com/tofuutils/pre-commit-opentofu.git
synced 2025-10-15 17:38:54 +02:00
Add exit code for 'terraform validate' so pre-commit check fails (#34)
This commit is contained in:
parent
66214dcc4b
commit
beb4a67753
1 changed files with 6 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ set -e
|
||||||
|
|
||||||
declare -a paths
|
declare -a paths
|
||||||
index=0
|
index=0
|
||||||
|
error=0
|
||||||
|
|
||||||
for file_with_path in "$@"; do
|
for file_with_path in "$@"; do
|
||||||
file_with_path="${file_with_path// /__REPLACED__SPACE__}"
|
file_with_path="${file_with_path// /__REPLACED__SPACE__}"
|
||||||
|
|
@ -17,6 +18,7 @@ for path_uniq in $(echo "${paths[*]}" | tr ' ' '\n' | sort -u); do
|
||||||
pushd "$path_uniq" > /dev/null
|
pushd "$path_uniq" > /dev/null
|
||||||
if [[ -n "$(find . -maxdepth 1 -name '*.tf' -print -quit)" ]] ; then
|
if [[ -n "$(find . -maxdepth 1 -name '*.tf' -print -quit)" ]] ; then
|
||||||
if ! terraform validate -check-variables=true ; then
|
if ! terraform validate -check-variables=true ; then
|
||||||
|
error=1
|
||||||
echo
|
echo
|
||||||
echo "Failed path: $path_uniq"
|
echo "Failed path: $path_uniq"
|
||||||
echo "================================"
|
echo "================================"
|
||||||
|
|
@ -24,3 +26,7 @@ for path_uniq in $(echo "${paths[*]}" | tr ' ' '\n' | sort -u); do
|
||||||
fi
|
fi
|
||||||
popd > /dev/null
|
popd > /dev/null
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if [[ -n "${error}" ]] ; then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue