#!/usr/bin/env bash
set -euo pipefail

for path in "$@"; do
  terraform fmt "$path"
done
