mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
21 lines
478 B
Markdown
21 lines
478 B
Markdown
![]() |
# 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`
|