Skip to content

Commit a3f0d68

Browse files
committed
Update refs to fork
1 parent 0dffe9d commit a3f0d68

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+142
-142
lines changed

cmd/tfplugingen-openapi/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/hashicorp/cli"
1212
"github.com/mattn/go-colorable"
1313

14-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/cmd"
14+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/cmd"
1515
)
1616

1717
// version will be set by goreleaser via ldflags

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/hashicorp/terraform-plugin-codegen-openapi
1+
module github.com/starburstdata/terraform-plugin-codegen-openapi
22

33
go 1.23.0
44

internal/cmd/generate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"os"
1414
"strings"
1515

16-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/config"
17-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/explorer"
18-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/mapper"
16+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/config"
17+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/explorer"
18+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/mapper"
1919
"github.com/hashicorp/terraform-plugin-codegen-spec/spec"
2020

2121
"github.com/hashicorp/cli"

internal/cmd/generate_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/google/go-cmp/cmp"
1212
"github.com/hashicorp/cli"
1313

14-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/cmd"
14+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/cmd"
1515
)
1616

1717
func TestGenerate_WithConfig(t *testing.T) {

internal/config/parse_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"regexp"
88
"testing"
99

10-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/config"
10+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/config"
1111
)
1212

1313
func TestParseConfig_Valid(t *testing.T) {

internal/explorer/config_explorer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"fmt"
1010
"strings"
1111

12-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/config"
12+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/config"
1313

1414
highbase "github.com/pb33f/libopenapi/datamodel/high/base"
1515
high "github.com/pb33f/libopenapi/datamodel/high/v3"

internal/explorer/config_explorer_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010

1111
"gopkg.in/yaml.v3"
1212

13-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/config"
14-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/explorer"
13+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/config"
14+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/explorer"
1515

1616
"github.com/google/go-cmp/cmp"
1717
"github.com/google/go-cmp/cmp/cmpopts"

internal/explorer/explorer_utils_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"github.com/pb33f/libopenapi/datamodel/high/base"
1313
high "github.com/pb33f/libopenapi/datamodel/high/v3"
1414

15-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/mapper/util"
15+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/mapper/util"
1616
)
1717

1818
func TestReadOpParameters_Resource(t *testing.T) {

internal/explorer/guesstimator_explorer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ package explorer_test
66
import (
77
"testing"
88

9-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/explorer"
9+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/explorer"
1010

1111
high "github.com/pb33f/libopenapi/datamodel/high/v3"
1212
"github.com/pb33f/libopenapi/orderedmap"

internal/log/warn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"errors"
88
"log/slog"
99

10-
"github.com/hashicorp/terraform-plugin-codegen-openapi/internal/mapper/oas"
10+
"github.com/starburstdata/terraform-plugin-codegen-openapi/internal/mapper/oas"
1111
)
1212

1313
// WarnLogOnError inspects the error type and extracts additional information for structured logging if possible

0 commit comments

Comments
 (0)