From e6ffcd1c10e5913a119be622675838231cbcafec Mon Sep 17 00:00:00 2001 From: Henrique Santos <118177985+hcsa73@users.noreply.github.com> Date: Fri, 8 Sep 2023 18:07:46 +0100 Subject: [PATCH] Fix provider address (#13) Co-authored-by: Henrique Santos --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 4d38f3ad..a2b2db64 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ var ( func main() { err := providerserver.Serve(context.Background(), stackit.New(version), providerserver.ServeOpts{ - Address: "registry.terraform.io/providers/stackitcloud/stackit", + Address: "registry.terraform.io/stackitcloud/stackit", }) if err != nil { log.Fatal(err.Error())