hashicorp / terraform-provider-netlify

Terraform Netlify provider. Please note: This Terraform provider is archived per our provider archiving process: https://terraform.io/docs/internals/archiving.html
https://registry.terraform.io
Mozilla Public License 2.0
56 stars 35 forks source link

Use Go modules, update vendor with `go mod vendor` #16

Closed mitchellh closed 5 years ago

mitchellh commented 5 years ago

Fixes #13

Just did a go mod init; rm -rf vendor; go mod vendor then ran tests (including acceptance). They pass!

mitchellh commented 5 years ago

Good call. Done and pushed.

appilon commented 5 years ago

I recommend bumping the sdk to v0.11 that has go modules, that will reduce the number of indirect requirements in go.mod, then tidy and revendor!

go get github.com/hashicorp/terraform@sdk-v0.11-with-go-modules
mitchellh commented 5 years ago

Great, thanks! Done.