Skip to content

Commit

Permalink
Honor excludes; don't run against entire directories (closes antonbab…
Browse files Browse the repository at this point in the history
  • Loading branch information
ericfrederich committed Jun 30, 2020
1 parent 2e40ade commit 35d5fa4
Showing 1 changed file with 2 additions and 27 deletions.
29 changes: 2 additions & 27 deletions terraform_fmt.sh
Original file line number Diff line number Diff line change
@@ -1,34 +1,9 @@
#!/usr/bin/env bash
set -e

declare -a paths
declare -a tfvars_files

index=0

for file_with_path in "$@"; do
file_with_path="${file_with_path// /__REPLACED__SPACE__}"

paths[index]=$(dirname "$file_with_path")

if [[ "$file_with_path" == *".tfvars" ]]; then
tfvars_files+=("$file_with_path")
fi

let "index+=1"
done

for path_uniq in $(echo "${paths[*]}" | tr ' ' '\n' | sort -u); do
path_uniq="${path_uniq//__REPLACED__SPACE__/ }"

pushd "$path_uniq" > /dev/null
terraform fmt
pushd $(dirname "$file_with_path")
terraform fmt $(basename "$file_with_path")
popd > /dev/null
done

# terraform.tfvars are excluded by `terraform fmt`
for tfvars_file in "${tfvars_files[@]}"; do
tfvars_file="${tfvars_file//__REPLACED__SPACE__/ }"

terraform fmt "$tfvars_file"
done

0 comments on commit 35d5fa4

Please sign in to comment.