add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# terraform 输出
> 导出有关您的 Terraform 资源的结构化数据。
> 更多信息:<https://developer.hashicorp.com/terraform/cli/commands/output>。
- 如果没有其他参数,`output` 将显示根模块的所有输出:
`terraform output`
- 仅输出特定名称的值:
`terraform output {{name}}`
- 将输出值转换为原始字符串(对 shell 脚本很有用):
`terraform output -raw`
- 将输出格式化为 JSON 对象,每个输出对应一个键(与 jq 配合使用时很有用):
`terraform output -json`