provider plugin fails with error "Incompatible API version with plugin. Plugin version: 2, Ours: 1"
scross01 opened this issue · 2 comments
scross01 commented
when terraform-provider-opc is built against the latest terraform source the provider fails with the following error:
$ terraform plan
Error configuring: 1 error(s) occurred:
* Incompatible API version with plugin. Plugin version: 2, Ours: 1
scross01 commented
The problem appears to be related to terraform v0.7.13. Workaround is to compile the terraform-provider-opc against the v0.7.12 tagged source
cd $GOPATH/src/github.com/hashicorp/terraform
git checkout v0.7.12
scross01 commented