From 59e116322e5294651082d8e2367346bb9037883f Mon Sep 17 00:00:00 2001 From: "Stephen Lewis (Burrows)" Date: Thu, 10 Dec 2020 10:59:50 -0800 Subject: [PATCH] Marked terraform provider imports as v3 (#4309) --- third_party/terraform/main.go.erb | 2 +- .../terraform/utils/provider_handwritten_endpoint.go.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/third_party/terraform/main.go.erb b/third_party/terraform/main.go.erb index 46a3e6b3d89c..05f1c58be3ac 100644 --- a/third_party/terraform/main.go.erb +++ b/third_party/terraform/main.go.erb @@ -3,7 +3,7 @@ package main import ( "github.com/hashicorp/terraform-plugin-sdk/v2/plugin" - "github.com/hashicorp/terraform-provider-google<%= "-" + version unless version == 'ga' -%>/google<%= "-" + version unless version == 'ga' -%>" + "github.com/hashicorp/terraform-provider-google<%= "-" + version unless version == 'ga' -%>/v3/google<%= "-" + version unless version == 'ga' -%>" ) func main() { diff --git a/third_party/terraform/utils/provider_handwritten_endpoint.go.erb b/third_party/terraform/utils/provider_handwritten_endpoint.go.erb index 52a537369a8b..90ea03ce4feb 100644 --- a/third_party/terraform/utils/provider_handwritten_endpoint.go.erb +++ b/third_party/terraform/utils/provider_handwritten_endpoint.go.erb @@ -4,7 +4,7 @@ package google import ( "encoding/json" "fmt" - "github.com/hashicorp/terraform-provider-google-beta/google-beta" + "github.com/hashicorp/terraform-provider-google-beta/v3/google-beta" "os" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"