Files
tldr/pages.zh/common/terraform-fmt.md

20 lines
428 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# terraform fmt
> 根据 Terraform 语言样式约定格式化配置。
> 更多信息:<https://developer.hashicorp.com/terraform/cli/commands/fmt>。
- 格式化当前目录中的配置:
`terraform fmt`
- 格式化当前目录及子目录中的配置:
`terraform fmt -recursive`
- 显示格式化更改的差异:
`terraform fmt -diff`
- 不将格式化的文件列出到 `stdout`
`terraform fmt -list=false`