问题
Error: Incompatible provider version
│
│ Provider registry.terraform.io/hashicorp/template v2.2.0 does not have a
│ package available for your current platform, darwin_arm64.
│
│ Provider releases are separate from Terraform CLI releases, so not all
│ providers are available for all platforms. Other versions of this provider
│ may have different platforms supported.我遵循这个指南,在做最后的步骤时遇到了问题。
Then copy from $GOPATH/bin/terraform-provider-aws to:
~/.terraform.d/plugins/registry.terraform.io/hashicorp/aws/3.22.0/dar$GOPATH是什么?我在做$make build时也遇到了问题
https://github.com/hashicorp/terraform/issues/27257#issuecomment-754777716
发布于 2022-01-16 17:51:20
我制作了一个docker-compose.yml文件
version: '3.7'
services:
terraform:
platform: linux/amd64
image: hashicorp/terraform:0.12.21
volumes:
- .:/infra
working_dir: /infra运行坞-come.yml与
docker-compose -f ./docker-compose.yml run --rm terraform apply就像一种魅力(:
https://stackoverflow.com/questions/70732636
复制相似问题