1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

terraform-fmt: add page (#3958)

This commit is contained in:
Nelson Figueroa 2020-04-05 13:02:58 -07:00 committed by GitHub
parent f68c94e85c
commit 10f6f2a68e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,20 @@
# terraform fmt
> Format configuration according to Terraform language style conventions.
> More information: <https://www.terraform.io/docs/commands/fmt.html>.
- Format the configuration in the current directory:
`terraform fmt`
- Format the configuration in the current directory and subdirectories:
`terraform fmt -recursive`
- Display diffs of formatting changes:
`terraform fmt -diff`
- Do not list files that were formatted to stdout:
`terraform fmt -list=false`