From 0e34c6e2f0dc5767c9b97b53d25fe14e430ae5c7 Mon Sep 17 00:00:00 2001 From: Matthew John Date: Sat, 3 Feb 2024 09:20:00 +0000 Subject: [PATCH] fix: Update remaining references to matthewjohn after merge to main --- internal/provider/git_provider_data_source.go | 2 +- internal/provider/git_providers_data_source.go | 2 +- internal/provider/module_resource.go | 2 +- main.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/provider/git_provider_data_source.go b/internal/provider/git_provider_data_source.go index cb92e2e..07067ba 100644 --- a/internal/provider/git_provider_data_source.go +++ b/internal/provider/git_provider_data_source.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/path" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/matthewjohn/terraform-provider-terrareg/internal/terrareg" + "github.com/dockstudios/terraform-provider-terrareg/internal/terrareg" ) // Ensure provider defined types fully satisfy framework interfaces. diff --git a/internal/provider/git_providers_data_source.go b/internal/provider/git_providers_data_source.go index 7addf4b..77cf651 100644 --- a/internal/provider/git_providers_data_source.go +++ b/internal/provider/git_providers_data_source.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/matthewjohn/terraform-provider-terrareg/internal/terrareg" + "github.com/dockstudios/terraform-provider-terrareg/internal/terrareg" ) // Ensure provider defined types fully satisfy framework interfaces. diff --git a/internal/provider/module_resource.go b/internal/provider/module_resource.go index 5f82cc7..783026b 100644 --- a/internal/provider/module_resource.go +++ b/internal/provider/module_resource.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier" "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-framework/types" - "github.com/matthewjohn/terraform-provider-terrareg/internal/terrareg" + "github.com/dockstudios/terraform-provider-terrareg/internal/terrareg" ) // Ensure provider defined types fully satisfy framework interfaces. diff --git a/main.go b/main.go index 8a125b6..b452d62 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ func main() { flag.Parse() opts := providerserver.ServeOpts{ - Address: "registry.terraform.io/matthewjohn/terrareg", + Address: "registry.terraform.io/dockstudios/terrareg", Debug: debug, }