Skip to content

Commit

Permalink
chore: Rename provider
Browse files Browse the repository at this point in the history
  • Loading branch information
blz-ea committed Dec 28, 2020
1 parent f041359 commit 41900e6
Show file tree
Hide file tree
Showing 28 changed files with 37 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<!--- If your PR fully resolves and should automatically close the linked issue, use Closes. Otherwise, use Relates --->
Relates OR Closes #0000

Release note for [CHANGELOG](https://github.com/danitso/terraform-provider-proxmox/blob/master/CHANGELOG.md):
Release note for [CHANGELOG](https://github.com/blz-ea/terraform-provider-proxmox/blob/master/CHANGELOG.md):
<!-- If change is not user facing, just write "NONE" in the release-note block below. -->

```release-note
Expand Down
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ else
endif
endif

TERRAFORM_PLUGIN_DIRECTORY=$(TERRAFORM_CACHE_DIRECTORY)/terraform.danitso.com/provider/proxmox/$(VERSION)/$(TERRAFORM_PLATFORM)
TERRAFORM_PLUGIN_EXECUTABLE=$(TERRAFORM_PLUGIN_DIRECTORY)/$(NAME)_v$(VERSION)_x4$(TERRAFORM_PLUGIN_EXTENSION)

default: build

build:
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/danitso/terraform-provider-proxmox
module github.com/blz-ea/terraform-provider-proxmox

go 1.13

Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ github.com/hashicorp/memberlist v0.1.0/go.mod h1:ncdBp14cuox2iFOq3kDiquKU6fqsTBc
github.com/hashicorp/serf v0.0.0-20160124182025-e4ec8cc423bb/go.mod h1:h/Ru6tmZazX7WO/GDmwdpS975F019L4t5ng5IgwbNrE=
github.com/hashicorp/terraform v0.12.23 h1:3fTWHq6JkHk4VJ8Z6A+8MvvAVtlSXbXViPJSWLuSNAk=
github.com/hashicorp/terraform v0.12.23/go.mod h1:eJcloDEx5ywM4a1tetIuVrlqklM0bUVRYJBYAh4CYzA=
github.com/hashicorp/terraform-config-inspect v0.0.0-20191212124732-c6ae6269b9d7 h1:Pc5TCv9mbxFN6UVX0LH6CpQrdTM5YjbVI2w15237Pjk=
github.com/hashicorp/terraform-config-inspect v0.0.0-20191212124732-c6ae6269b9d7/go.mod h1:p+ivJws3dpqbp1iP84+npOyAmTTOLMgCzrXd3GSdn/A=
github.com/hashicorp/terraform-svchost v0.0.0-20191011084731-65d371908596 h1:hjyO2JsNZUKT1ym+FAdlBEkGPevazYsmVgIMw7dVELg=
github.com/hashicorp/terraform-svchost v0.0.0-20191011084731-65d371908596/go.mod h1:kNDNcF7sN4DocDLBkQYz73HGKwN1ANB1blq4lIYLYvg=
Expand Down Expand Up @@ -228,6 +229,7 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5
github.com/miekg/dns v1.0.8/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg=
github.com/mitchellh/cli v1.0.0 h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=
github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc=
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db h1:62I3jR2EmQ4l5rM/4FEfDWcRD+abF5XlKShorW5LRoQ=
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw=
github.com/mitchellh/copystructure v1.0.0 h1:Laisrj+bAB6b/yJwB5Bt3ITZhGJdqmxquMKeZ+mmkFQ=
github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package main

import (
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/hashicorp/terraform/plugin"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package acceptancetests

import (
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"strings"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package acceptancetests

import (
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"strings"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package acceptancetests

import (
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"strings"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package acceptancetests

import (
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf/acceptancetests/testutils"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"os"
Expand Down
4 changes: 2 additions & 2 deletions proxmoxtf/acceptancetests/testutils/alias.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package testutils

import (
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/acceptancetests/testutils/common.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package testutils

import (
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
Expand Down
4 changes: 2 additions & 2 deletions proxmoxtf/acceptancetests/testutils/ipset.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package testutils
import (
"bytes"
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"reflect"
Expand Down
4 changes: 2 additions & 2 deletions proxmoxtf/acceptancetests/testutils/role.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package testutils

import (
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"sort"
Expand Down
4 changes: 2 additions & 2 deletions proxmoxtf/acceptancetests/testutils/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package testutils
import (
"bytes"
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/danitso/terraform-provider-proxmox/proxmoxtf"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmoxtf"
"github.com/hashicorp/terraform/terraform"
"html/template"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package proxmoxtf
import (
"errors"
"fmt"
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
"net/url"
"os"
Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_certificate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_cluster_alias.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package proxmoxtf

import (
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_cluster_ipset.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
package proxmoxtf

import (
"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_container.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strconv"
"strings"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"
)
Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package proxmoxtf
import (
"fmt"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
"strings"
"time"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package proxmoxtf
import (
"strings"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_hosts.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"strings"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package proxmoxtf
import (
"strings"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_role.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package proxmoxtf
import (
"strings"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_time.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"time"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"time"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"
)
Expand Down
2 changes: 1 addition & 1 deletion proxmoxtf/resource_virtual_environment_vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"strings"
"time"

"github.com/danitso/terraform-provider-proxmox/proxmox"
"github.com/blz-ea/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"
)
Expand Down

0 comments on commit 41900e6

Please sign in to comment.