mac OS 中的 Terraform CLI 配置文件 (.terraformrc) 在哪里?

Where is the Terraform CLI configuration file (.terraformrc) located in mac OS?

terraform 的官方文档中提到:

但在我的 mac 中找不到它。

Macbook 版本:macOS Big Sur 版本 11.6.2

地形文档:https://www.terraform.io/cli/config/config-file

您找不到它,因为默认情况下该文件不存在。您可以将它放在您的主文件夹中:

cd ~
touch .terraformrc

或者您可以将它放在其他地方并使用 TF_CLI_CONFIG_FILE 环境变量指定它的位置。