如何让`terraforminit`在我的AppleSiliconMacbookPro上为GoogleProvider运行?

当我terraform init在 Apple Silicon macbook pro 上运行我的 Google Cloud Platform 项目时,出现此错误。

Provider registry.terraform.io/hashicorp/google v3.57.0 does not have a package available for your current platform, darwin_arm64.

我该如何解决这个问题?我以为 Rosetta2 模拟器会选中这个框,但唉...

回答

大多数供应商已经提供了更新版本的软件包。您可以通过以下方式更新提供程序:
terraform init -upgrade
如果您不接受此路线或无法解决问题,请查看以下答案。

从头开始构建 Terraform 的 GCP 提供程序!我修改了这个演练。https://github.com/hashicorp/terraform/issues/27257#issuecomment-754777716

brew install --build-from-source terraform

这也将安装 Golang(并且在这篇文章中似乎正在运行)

git clone https://github.com/hashicorp/terraform-provider-google.git
cd terraform-provider-google
git checkout v3.22.0
go get -d github.com/pavius/impi/cmd/impi
make tools
make build

下面的目录可能不存在,所以让我们创建它并复制我们刚刚构建的二进制文件。

mkdir -p ${HOME}/.terraform.d/plugins/registry.terraform.io/hashicorp/google/3.22.0/darwin_arm64
cp ${HOME}/go/bin/terraform-provider-google ${HOME}/.terraform.d/plugins/registry.terraform.io/hashicorp/google/3.22.0/darwin_arm64

请注意,${HOME}/go如果您还没有${GOPATH}定义,这是您的 golang 安装所在的位置。如果这样做,请修改上述命令以说明新构建二进制文件的位置。

cp ${GOPATH}/bin/terraform-provider-google ${HOME}/.terraform.d/plugins/registry.terraform.io/hashicorp/google/3.22.0/darwin_arm64

回到我的项目后,瞧!

? terraform init

Initializing the backend...

Initializing provider plugins...
- Finding latest version of hashicorp/google...
- Installing hashicorp/google v3.22.0...
- Installed hashicorp/google v3.22.0 (unauthenticated)

Terraform has created a lock file .terraform.lock.hcl to record the provider
selections it made above. Include this file in your version control repository
so that Terraform can guarantee to make the same selections by default when
you run "terraform init" in the future.

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see
any changes that are required for your infrastructure. All Terraform commands
should now work.

If you ever set or change modules or backend configuration for Terraform,
rerun this command to reinitialize your working directory. If you forget, other


以上是如何让`terraforminit`在我的AppleSiliconMacbookPro上为GoogleProvider运行?的全部内容。
THE END
分享
二维码
< <上一篇
下一篇>>