Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds the ability for Spotless to test for/enforce consistent formatting for Terraform files (.tf, .tfvars).
The step shells out to the external
terraform fmt
command, the implementation being similar to the existingBlack
step.I found that often times terraform files are part of an application repository, thus enhancing Spotless in order to be able to use a single build tool/interface for keeping formatting for these sources consistent.
Here's a repository I used for doing integration testing of the gradle plugin: https://github.com/carhartl/spotless-terraform-test
See https://www.terraform.io/docs/cli/commands/fmt.html for more information regarding Terraform formatting.