pre-commit-opentofu/terraform_validate_no_variables.sh

5 lines
99 B
Bash
Raw Normal View History

#!/usr/bin/env bash
for file in "$@"; do
terraform validate -check-variables=false "$file"
done