Hello. Trying to use the Terraform Bridge Provider...
# general
d
Hello. Trying to use the Terraform Bridge Provider Boilerplate, can someone tell me what to put in
go.mod
for https://registry.terraform.io/providers/scaleway/scaleway/latest? I tried putting
<http://github.com/scaleway/terraform-provider-scaleway/scaleway|github.com/scaleway/terraform-provider-scaleway/scaleway> v2.1.0
but it tells me
version "v2.1.0" invalid: should be v0 or v1, not v2
q
You may find this useful, from my colleague @billowy-army-68599 https://github.com/jaxxstorm/pulumi-scaleway
The error you're getting is a Go thing. Go enforces semantic version via package path for anything above v1, which Scaleway haven't adhered to (probably don't expect their Terraform provider to be a dependency?)
d
Okay, hm
So I would have to ask Scaleway to fix something?