Skip to content

Commit

Permalink
chore: rename provider
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusramberg committed Oct 10, 2024
1 parent f414f93 commit e1967be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/remarkable/terraform-wif-data-provider
module github.com/remarkable/terraform-provider-wif-data

go 1.22.5

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/hashicorp/terraform-plugin-framework/providerserver"

"github.com/remarkable/terraform-wif-data-provider/internal/data"
"github.com/remarkable/terraform-provider-wif-data/internal/data"
)

var version string = "dev"
Expand All @@ -20,7 +20,7 @@ func main() {
flag.BoolVar(&debug, "debug", false, "set to true to run the provider with support for debuggers like delve")
flag.Parse()
opts := providerserver.ServeOpts{
Address: "registry.terraform.io/remarkable/terraform-wif-data-provider",
Address: "registry.terraform.io/remarkable/terraform-provider-wif-data",
Debug: debug,
}
err := providerserver.Serve(context.Background(), data.New(version), opts)
Expand Down

0 comments on commit e1967be

Please sign in to comment.