https://pulumi.com logo
d

dazzling-sundown-39670

12/12/2021, 11:29 AM
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

quiet-wolf-18467

12/12/2021, 11:38 AM
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

dazzling-sundown-39670

12/12/2021, 11:42 AM
Okay, hm
So I would have to ask Scaleway to fix something?