Skip to content

Commit

Permalink
provider reference update (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
cc-shekher authored Dec 5, 2024
1 parent c08c611 commit c82a828
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
terraform {
required_providers {
starchitect = {
source = "hashicorp.com/edu/starchitect"
source = "registry.terraform.io/nonfx/starchitect"
version = "1.0.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand All @@ -42,7 +42,7 @@ terraform {
```
provider_installation {
dev_overrides {
"hashicorp.com/edu/starchitect" = "<GOBIN PATH>"
"registry.terraform.io/nonfx/starchitect" = "<GOBIN PATH>"
}
direct {}
}
Expand Down

0 comments on commit c82a828

Please sign in to comment.