반응형
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
참고
반응형
'📂 IaC > Terraform' 카테고리의 다른 글
[Terraform] Output 출력 변수 (0) | 2022.09.03 |
---|---|
[Terraform] Variable 입력 변수 (0) | 2022.09.03 |
[Terraform] Provider, Resource, Data Source, Variable, Output, Locals, Module (0) | 2022.08.11 |
[Terraform] Configuration file과 HCL (0) | 2022.08.08 |
[TF] terraform으로 aws ec2 만들기 (0) | 2021.11.05 |