diff --git a/example/main.tf b/example/main.tf index 376d7f7..a161d5c 100644 --- a/example/main.tf +++ b/example/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { starchitect = { - source = "hashicorp.com/edu/starchitect" + source = "registry.terraform.io/nonfx/starchitect" version = "1.0.0" } } diff --git a/main.go b/main.go index 98440c1..bacf361 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ var ( func main() { opts := providerserver.ServeOpts{ - Address: "hashicorp.com/edu/starchitect", + Address: "registry.terraform.io/nonfx/starchitect", } if err := providerserver.Serve(context.Background(), starchitect.New(version), opts); err != nil { log.Fatal(err.Error()) diff --git a/readme.md b/readme.md index 6603886..2f37a56 100644 --- a/readme.md +++ b/readme.md @@ -26,7 +26,7 @@ Add the provider to your Terraform configuration. For example: terraform { required_providers { starchitect = { - source = "hashicorp.com/edu/starchitect" + source = "registry.terraform.io/nonfx/starchitect" version = "1.0.0" } } @@ -42,7 +42,7 @@ terraform { ``` provider_installation { dev_overrides { - "hashicorp.com/edu/starchitect" = "" + "registry.terraform.io/nonfx/starchitect" = "" } direct {} }