Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit c7802a9

Browse files
committed
Renamed repo name from terraform-provider-for-vmware-nsxt-virtual-private-cloud to terraform-provider-nsxt-virtual-private-cloud in all applicable files
1 parent 733f637 commit c7802a9

37 files changed

+46
-46
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Our Pledge
44

5-
We as members, contributors, and leaders pledge to make participation in terraform-provider-for-vmware-nsxt-virtual-private-cloud project and our
5+
We as members, contributors, and leaders pledge to make participation in terraform-provider-nsxt-virtual-private-cloud project and our
66
community a harassment-free experience for everyone, regardless of age, body
77
size, visible or invisible disability, ethnicity, sex characteristics, gender
88
identity and expression, level of experience, education, socio-economic status,

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to terraform-provider-for-vmware-nsxt-virtual-private-cloud
1+
# Contributing to terraform-provider-nsxt-virtual-private-cloud
22

3-
The terraform-provider-for-vmware-nsxt-virtual-private-cloud project team welcomes contributions from the community. If you wish to contribute code and you have not signed our Developer Certificate of Origin (DCO), our bot will update the issue when you open a Pull Request. For any questions about the DCO process, please refer to our [DCO](https://cla.vmware.com/dco).
3+
The terraform-provider-nsxt-virtual-private-cloud project team welcomes contributions from the community. If you wish to contribute code and you have not signed our Developer Certificate of Origin (DCO), our bot will update the issue when you open a Pull Request. For any questions about the DCO process, please refer to our [DCO](https://cla.vmware.com/dco).
44

55
## Contribution Flow
66

@@ -15,7 +15,7 @@ This is a rough outline of what a contributor's workflow looks like:
1515
Example:
1616

1717
``` shell
18-
git remote add upstream https://github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud.git
18+
git remote add upstream https://github.com/vmware/terraform-provider-nsxt-virtual-private-cloud.git
1919
git checkout -b my-new-feature main
2020
git commit -a
2121
git push origin my-new-feature

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tools:
1212
GO111MODULE=on go install -mod=mod github.com/katbyte/terrafmt
1313

1414
build: fmtcheck
15-
go install -ldflags "-X github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/nsxt.GitCommit=$(GIT_COMMIT)"
15+
go install -ldflags "-X github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/nsxt.GitCommit=$(GIT_COMMIT)"
1616

1717
test: fmtcheck
1818
go test -i $(TEST) || exit 1

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# terraform-provider-for-vmware-nsxt-virtual-private-cloud
1+
# terraform-provider-nsxt-virtual-private-cloud
22

33
This is the repository for the Terraform NSX-T VPC Provider, which one can use with
44
Terraform to work with [VMware NSX-T][vmware-nsxt].
@@ -69,12 +69,12 @@ version of the provider (see [the section above](#using-the-provider)).
6969
## Cloning the Project
7070

7171
First, you will want to clone the repository to
72-
`$GOPATH/src/github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud`:
72+
`$GOPATH/src/github.com/vmware/terraform-provider-nsxt-virtual-private-cloud`:
7373

7474
```sh
7575
mkdir -p $GOPATH/src/github.com/vmware
7676
cd $GOPATH/src/github.com/vmware
77-
git clone https://github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud.git
77+
git clone https://github.com/vmware/terraform-provider-nsxt-virtual-private-cloud.git
7878
```
7979

8080
## Building and Installing the Provider
@@ -83,11 +83,11 @@ Recommended golang version is go1.18 onwards.
8383
After the clone has been completed, you can enter the provider directory and build the provider.
8484

8585
```sh
86-
cd $GOPATH/src/github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud
86+
cd $GOPATH/src/github.com/vmware/terraform-provider-nsxt-virtual-private-cloud
8787
make
8888
```
8989

90-
After the build is complete, copy the provider executable `terraform-provider-for-vmware-nsxt-virtual-private-cloud` into location specified in your provider installation configuration. Make sure to delete provider lock files that might exist in your working directory due to prior provider usage. Run `terraform init`.
90+
After the build is complete, copy the provider executable `terraform-provider-nsxt-virtual-private-cloud` into location specified in your provider installation configuration. Make sure to delete provider lock files that might exist in your working directory due to prior provider usage. Run `terraform init`.
9191
For developing, consider using [dev overrides configuration][dev-overrides]. Please note that `terraform init` should not be used with dev overrides.
9292

9393
[dev-overrides]: https://www.terraform.io/docs/cli/config/config-file.html#development-overrides-for-provider-developers
@@ -166,4 +166,4 @@ The NSX Virtual Private Cloud Terraform provider is now VMware supported as well
166166

167167
Copyright © 2022-2023 VMware, Inc. All Rights Reserved.
168168

169-
The NSX VPC Terraform provider is available under [MPL2.0 license](https://github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/blob/main/LICENSE).
169+
The NSX VPC Terraform provider is available under [MPL2.0 license](https://github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/blob/main/LICENSE).

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud
1+
module github.com/vmware/terraform-provider-nsxt-virtual-private-cloud
22

33
go 1.19
44

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/terraform-plugin-sdk/v2/helper/schema"
1212
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
1313

14-
"github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/nsxt"
14+
"github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/nsxt"
1515
)
1616

1717
func main() {

nsxt/clients/custom_nsxt_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"crypto/x509"
1313
"io/ioutil"
1414

15-
nsxtsession "github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/nsxt/session"
15+
nsxtsession "github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/nsxt/session"
1616
)
1717

1818
type Configuration struct {

nsxt/custom_provider_test.go

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

1717
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1818
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
19-
nsxtclient "github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/nsxt/clients"
20-
nsxtsession "github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/nsxt/session"
19+
nsxtclient "github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/nsxt/clients"
20+
nsxtsession "github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/nsxt/session"
2121
)
2222

2323
var testAccProviders map[string]*schema.Provider

nsxt/custom_resource_nsxt_vpc_vm_tags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"fmt"
1717
"log"
1818

19-
nsxtclient "github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/nsxt/clients"
19+
nsxtclient "github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/nsxt/clients"
2020

2121
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
2222
)

nsxt/custom_resource_nsxt_vpc_vm_tags_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
1818
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
19-
nsxtclient "github.com/vmware/terraform-provider-for-vmware-nsxt-virtual-private-cloud/nsxt/clients"
19+
nsxtclient "github.com/vmware/terraform-provider-nsxt-virtual-private-cloud/nsxt/clients"
2020
)
2121

2222
func TestNSXTVpcVmTagsBasic(t *testing.T) {

0 commit comments

Comments
 (0)