Skip to content

Commit

Permalink
Changing references from HewlettPackard to HPE
Browse files Browse the repository at this point in the history
Changing module paths/references to the old HewlettPackard github org
  • Loading branch information
J0HNB0Y committed Mar 4, 2022
1 parent 2dc907e commit 73a299a
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .golangci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#(C) Copyright 2019 Hewlett Packard Enterprise Development LP
#(C) Copyright 2019-2022 Hewlett Packard Enterprise Development LP

run:
deadline: 240s
Expand All @@ -13,7 +13,7 @@ linters-settings:
lll:
line-length: 128
goimports:
local-prefixes: "github.com/HewlettPackard"
local-prefixes: "github.com/HPE"
godox:
keywords:
- OPTIMIZE
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ We welcome and encourage community contributions to terraform-provider-hpegl.

## Contributing

The best way to directly collaborate with the project contributors is through GitHub: <https://github.com/HewlettPackard/terraform-provider-hpegl>
The best way to directly collaborate with the project contributors is through GitHub: <https://github.com/HPE/terraform-provider-hpegl>

* If you want to contribute to our code by either fixing a problem or creating a new feature, please open a GitHub pull request.
* If you want to raise an issue such as a defect, an enhancement request or a general issue, please open a GitHub issue.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ This is the main repo for the GreenLake terraform provider which provides terraf
> on linux_amd64
```

1. Create a Terraform file in your working directory, and reference the desired provider version from the terraform [registry](https://registry.terraform.io/providers/HewlettPackard/hpegl/latest). For more information please consult the [documentation](docs/):
1. Create a Terraform file in your working directory, and reference the desired provider version from the terraform [registry](https://registry.terraform.io/providers/HPE/hpegl/latest). For more information please consult the [documentation](docs/):
```terraform
terraform {
required_providers {
hpegl = {
source = "hewlettpackard/hpegl"
source = "HPE/hpegl"
version = ">= 0.1.0-beta5"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export HPEGL_IAM_SERVICE_URL=< the "issuer" URL for the API client >
terraform {
required_providers {
hpegl = {
source = "hewlettpackard/hpegl"
source = "HPE/hpegl"
version = ">= 0.1.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
terraform {
required_providers {
hpegl = {
source = "hewlettpackard/hpegl"
source = "HPE/hpegl"
version = ">= 0.1.0"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/vmaas/resources/hpegl_vmaas_instance/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
terraform {
required_providers {
hpegl = {
source = "hewlettpackard/hpegl"
source = "HPE/hpegl"
version = "0.1.0-beta1"
}
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/HewlettPackard/terraform-provider-hpegl
module github.com/HPE/terraform-provider-hpegl

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion internal/acceptance/acceptance-utils/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

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

"github.com/HewlettPackard/terraform-provider-hpegl/internal/hpegl"
"github.com/HPE/terraform-provider-hpegl/internal/hpegl"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion internal/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/retrieve"
"github.com/hewlettpackard/hpegl-provider-lib/pkg/token/serviceclient"

"github.com/HewlettPackard/terraform-provider-hpegl/internal/services/clients"
"github.com/HPE/terraform-provider-hpegl/internal/services/clients"
)

func NewClientMap(ctx context.Context, d *schema.ResourceData) (map[string]interface{}, diag.Diagnostics) { // nolint gocyclo
Expand Down
4 changes: 2 additions & 2 deletions internal/hpegl/hpegl.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (

"github.com/hewlettpackard/hpegl-provider-lib/pkg/provider"

"github.com/HewlettPackard/terraform-provider-hpegl/internal/client"
"github.com/HewlettPackard/terraform-provider-hpegl/internal/services/resources"
"github.com/HPE/terraform-provider-hpegl/internal/client"
"github.com/HPE/terraform-provider-hpegl/internal/services/resources"
)

func ProviderFunc() plugin.ProviderFunc {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"

"github.com/HewlettPackard/terraform-provider-hpegl/internal/hpegl"
"github.com/HPE/terraform-provider-hpegl/internal/hpegl"
)

func main() {
Expand Down

0 comments on commit 73a299a

Please sign in to comment.