Skip to content

Commit 32e7256

Browse files
authored
chore(xfer): update module namespace (#2414)
1 parent 3ebb159 commit 32e7256

File tree

164 files changed

+434
-499
lines changed

Some content is hidden

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

164 files changed

+434
-499
lines changed

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-provider-vsphere
1+
module github.com/vmware/terraform-provider-vsphere
22

33
go 1.23.8
44

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"flag"
99

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
11-
"github.com/hashicorp/terraform-provider-vsphere/vsphere"
11+
"github.com/vmware/terraform-provider-vsphere/vsphere"
1212
)
1313

1414
func main() {
@@ -22,7 +22,7 @@ func main() {
2222

2323
if debugMode {
2424
opts.Debug = true
25-
opts.ProviderAddr = "hashicorp/vsphere"
25+
opts.ProviderAddr = "vmware/vsphere"
2626
}
2727

2828
plugin.Serve(opts)

vsphere/config.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,20 @@ import (
1717
"path/filepath"
1818
"time"
1919

20-
"github.com/vmware/govmomi/vapi/rest"
21-
2220
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
23-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/viapi"
2421
"github.com/vmware/govmomi"
2522
"github.com/vmware/govmomi/pbm"
2623
"github.com/vmware/govmomi/session"
2724
"github.com/vmware/govmomi/session/cache"
2825
"github.com/vmware/govmomi/session/keepalive"
26+
"github.com/vmware/govmomi/vapi/rest"
2927
"github.com/vmware/govmomi/vapi/tags"
3028
"github.com/vmware/govmomi/vim25"
3129
"github.com/vmware/govmomi/vim25/debug"
3230
"github.com/vmware/govmomi/vim25/soap"
3331
"github.com/vmware/govmomi/vim25/types"
3432
"github.com/vmware/govmomi/vsan"
33+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/viapi"
3534
)
3635

3736
// Client is the client connection manager for the vSphere provider. It

vsphere/config_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ import (
1111
"strconv"
1212
"testing"
1313

14-
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
15-
1614
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
15+
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
1716
)
1817

1918
func init() {

vsphere/data_source_vsphere_compute_cluster.go

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

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/clustercomputeresource"
11+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/clustercomputeresource"
1212
)
1313

1414
func dataSourceVSphereComputeCluster() *schema.Resource {

vsphere/data_source_vsphere_compute_cluster_host_group.go

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

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
11-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/clustercomputeresource"
11+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/clustercomputeresource"
1212
)
1313

1414
func dataSourceVSphereComputeClusterHostGroup() *schema.Resource {

vsphere/data_source_vsphere_compute_cluster_host_group_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"testing"
1111

1212
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
13-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/testhelper"
13+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/testhelper"
1414
)
1515

1616
func TestAccDataSourceVSphereComputeClusterHostGroup_basic(t *testing.T) {

vsphere/data_source_vsphere_compute_cluster_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ import (
88
"fmt"
99
"testing"
1010

11-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/testhelper"
12-
1311
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
12+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/testhelper"
1413
)
1514

1615
func TestAccDataSourceVSphereComputeCluster_basic(t *testing.T) {

vsphere/data_source_vsphere_content_library.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ package vsphere
66

77
import (
88
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
9-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/contentlibrary"
10-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/provider"
9+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/contentlibrary"
10+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/provider"
1111
)
1212

1313
func dataSourceVSphereContentLibrary() *schema.Resource {

vsphere/data_source_vsphere_content_library_item.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ package vsphere
66

77
import (
88
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
9-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/contentlibrary"
10-
"github.com/hashicorp/terraform-provider-vsphere/vsphere/internal/helper/provider"
9+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/contentlibrary"
10+
"github.com/vmware/terraform-provider-vsphere/vsphere/internal/helper/provider"
1111
)
1212

1313
func dataSourceVSphereContentLibraryItem() *schema.Resource {

0 commit comments

Comments
 (0)