Skip to content

Commit d9cd496

Browse files
committed
v0.0.2
1 parent 5029a03 commit d9cd496

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

internal/provider/provider.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ package provider
44

55
import (
66
"context"
7+
78
"github.com/hashicorp/terraform-plugin-framework/datasource"
89
"github.com/hashicorp/terraform-plugin-framework/path"
910
"github.com/hashicorp/terraform-plugin-framework/provider"
@@ -30,7 +31,7 @@ type liblabProviderModel struct {
3031

3132
func (p *Provider) Metadata(ctx context.Context, req provider.MetadataRequest, resp *provider.MetadataResponse) {
3233
resp.TypeName = "liblab"
33-
resp.Version = "0.0.1"
34+
resp.Version = "0.0.2"
3435
}
3536

3637
func (p *Provider) Schema(ctx context.Context, req provider.SchemaRequest, resp *provider.SchemaResponse) {

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func main() {
3838

3939
opts := providerserver.ServeOpts{
4040
// TODO: Update this string with the published name of your provider.
41-
Address: "registry.terraform.io/hashicorp/liblab",
41+
Address: "registry.terraform.io/kapicic/liblab",
4242
Debug: debug,
4343
}
4444

terraform-provider-liblab

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)