IaC/Terraform

[Terraform] Error: Incompatible provider version

dhyuck 2022. 8. 23. 22:57
반응형

Error 메세지

│ 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.
│

해결 방법

brew install go

git clone https://github.com/hashicorp/terraform-provider-template.git
cd ./terraform-provider-template

go build
chmod +x terraform-provider-template

mkdir -p ~/.terraform.d/plugins/registry.terraform.io/hashicorp/template/2.2.0/darwin_arm64

mv terraform-provider-template ~/.terraform.d/plugins/registry.terraform.io/hashicorp/template/2.2.0/darwin_arm64/terraform-provider-template_v2.2.0_x5

참고

반응형