Added formatting for tfvars (fixes #4) (#6)

This commit is contained in:
Anton Babenko 2018-01-15 16:12:51 +01:00 committed by GitHub
commit bd50003bd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 28 deletions

View file

@ -1,5 +1,5 @@
#!/usr/bin/env bash
for file in "$@"; do
terraform fmt `dirname $file`
terraform fmt "$file"
done