2018-01-24 12:13:51 +01:00
|
|
|
|
#!/usr/bin/env bash
|
2020-08-27 20:55:28 +01:00
|
|
|
|
set -eo pipefail
|
2018-01-24 12:13:51 +01:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
main() {
|
|
|
|
|
|
initialize_
|
|
|
|
|
|
parse_cmdline_ "$@"
|
|
|
|
|
|
terraform_validate_
|
|
|
|
|
|
}
|
2018-01-24 13:34:34 +01:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
initialize_() {
|
|
|
|
|
|
# get directory containing this script
|
|
|
|
|
|
local dir
|
|
|
|
|
|
local source
|
|
|
|
|
|
source="${BASH_SOURCE[0]}"
|
|
|
|
|
|
while [[ -L $source ]]; do # resolve $source until the file is no longer a symlink
|
|
|
|
|
|
dir="$(cd -P "$(dirname "$source")" > /dev/null && pwd)"
|
|
|
|
|
|
source="$(readlink "$source")"
|
|
|
|
|
|
# if $source was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
|
|
|
|
|
[[ $source != /* ]] && source="$dir/$source"
|
|
|
|
|
|
done
|
|
|
|
|
|
_SCRIPT_DIR="$(dirname "$source")"
|
2018-04-21 11:22:47 +02:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
# source getopt function
|
|
|
|
|
|
# shellcheck source=lib_getopt
|
|
|
|
|
|
. "$_SCRIPT_DIR/lib_getopt"
|
|
|
|
|
|
}
|
2018-01-24 13:34:34 +01:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
parse_cmdline_() {
|
|
|
|
|
|
declare argv
|
|
|
|
|
|
argv=$(getopt -o e:a: --long envs:,args: -- "$@") || return
|
|
|
|
|
|
eval "set -- $argv"
|
2018-04-21 11:22:47 +02:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
for argv; do
|
|
|
|
|
|
case $argv in
|
|
|
|
|
|
-a | --args)
|
|
|
|
|
|
shift
|
|
|
|
|
|
ARGS+=("$1")
|
|
|
|
|
|
shift
|
|
|
|
|
|
;;
|
|
|
|
|
|
-e | --envs)
|
|
|
|
|
|
shift
|
|
|
|
|
|
ENVS+=("$1")
|
|
|
|
|
|
shift
|
|
|
|
|
|
;;
|
|
|
|
|
|
--)
|
|
|
|
|
|
shift
|
|
|
|
|
|
FILES=("$@")
|
|
|
|
|
|
break
|
|
|
|
|
|
;;
|
|
|
|
|
|
esac
|
|
|
|
|
|
done
|
|
|
|
|
|
}
|
2020-04-04 02:17:25 -04:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
terraform_validate_() {
|
2020-04-04 02:17:25 -04:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
# Setup environment variables
|
2020-08-27 20:55:28 +01:00
|
|
|
|
local var var_name var_value
|
2020-08-27 10:57:45 +01:00
|
|
|
|
for var in "${ENVS[@]}"; do
|
2020-08-27 20:55:28 +01:00
|
|
|
|
var_name="${var%%=*}"
|
|
|
|
|
|
var_value="${var#*=}"
|
|
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
|
|
export $var_name="$var_value"
|
2020-08-27 10:57:45 +01:00
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
declare -a paths
|
2020-08-27 20:55:28 +01:00
|
|
|
|
local index=0
|
|
|
|
|
|
local error=0
|
2020-08-27 10:57:45 +01:00
|
|
|
|
|
2020-08-27 20:55:28 +01:00
|
|
|
|
local file_with_path
|
2020-08-27 10:57:45 +01:00
|
|
|
|
for file_with_path in "${FILES[@]}"; do
|
|
|
|
|
|
file_with_path="${file_with_path// /__REPLACED__SPACE__}"
|
|
|
|
|
|
|
|
|
|
|
|
paths[index]=$(dirname "$file_with_path")
|
|
|
|
|
|
((index += 1))
|
|
|
|
|
|
done
|
|
|
|
|
|
|
2020-08-27 20:55:28 +01:00
|
|
|
|
local path_uniq
|
2020-08-27 10:57:45 +01:00
|
|
|
|
for path_uniq in $(echo "${paths[*]}" | tr ' ' '\n' | sort -u); do
|
|
|
|
|
|
path_uniq="${path_uniq//__REPLACED__SPACE__/ }"
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n "$(find "$path_uniq" -maxdepth 1 -name '*.tf' -print -quit)" ]]; then
|
|
|
|
|
|
|
2020-08-27 20:55:28 +01:00
|
|
|
|
local starting_path
|
2020-08-27 10:57:45 +01:00
|
|
|
|
starting_path=$(realpath "$path_uniq")
|
2020-08-27 20:55:28 +01:00
|
|
|
|
local terraform_path
|
2020-08-27 10:57:45 +01:00
|
|
|
|
terraform_path="$path_uniq"
|
|
|
|
|
|
|
|
|
|
|
|
# Find the relevant .terraform directory (indicating a 'terraform init'),
|
|
|
|
|
|
# but fall through to the current directory.
|
|
|
|
|
|
while [[ $terraform_path != "." ]]; do
|
|
|
|
|
|
if [[ -d $terraform_path/.terraform ]]; then
|
|
|
|
|
|
break
|
|
|
|
|
|
else
|
|
|
|
|
|
terraform_path=$(dirname "$terraform_path")
|
|
|
|
|
|
fi
|
|
|
|
|
|
done
|
|
|
|
|
|
|
2020-08-27 20:55:28 +01:00
|
|
|
|
local validate_path
|
2020-08-27 10:57:45 +01:00
|
|
|
|
validate_path="${path_uniq#"$terraform_path"}"
|
|
|
|
|
|
|
|
|
|
|
|
# Change to the directory that has been initialized, run validation, then
|
|
|
|
|
|
# change back to the starting directory.
|
|
|
|
|
|
cd "$(realpath "$terraform_path")"
|
|
|
|
|
|
if ! terraform validate "${ARGS[@]}" "$validate_path"; then
|
|
|
|
|
|
error=1
|
|
|
|
|
|
echo
|
|
|
|
|
|
echo "Failed path: $path_uniq"
|
|
|
|
|
|
echo "================================"
|
2020-04-04 02:17:25 -04:00
|
|
|
|
fi
|
2020-08-27 10:57:45 +01:00
|
|
|
|
cd "$starting_path"
|
2018-05-24 21:10:49 +01:00
|
|
|
|
fi
|
2020-08-27 10:57:45 +01:00
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
|
|
if [[ $error -ne 0 ]]; then
|
|
|
|
|
|
exit 1
|
2018-01-24 13:48:44 +01:00
|
|
|
|
fi
|
2020-08-27 10:57:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# global arrays
|
|
|
|
|
|
declare -a ARGS
|
|
|
|
|
|
declare -a ENVS
|
|
|
|
|
|
declare -a FILES
|
2019-02-21 19:38:50 +11:00
|
|
|
|
|
2020-08-27 10:57:45 +01:00
|
|
|
|
[[ ${BASH_SOURCE[0]} != "$0" ]] || main "$@"
|