Skip to content

Commit

Permalink
Switch namespace from MattHodge to OctopusDeploy
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-french committed Apr 11, 2019
1 parent f6773df commit 0ecd0b5
Show file tree
Hide file tree
Showing 36 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ It is based on the [go-octopusdeploy](https://github.com/OctopusDeploy/go-octopu

As this provider is still under development, you will need to manually download it.

There are compiled binaries for most platforms in [Releases](https://github.com/MattHodge/terraform-provider-octopusdeploy/releases).
There are compiled binaries for most platforms in [Releases](https://github.com/OctopusDeploy/terraform-provider-octopusdeploy/releases).

To use it, extract the binary for your platform into the same folder as your `.tf` file(s) will be located, then run `terraform init`.

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"github.com/hashicorp/terraform/plugin"

"github.com/MattHodge/terraform-provider-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/terraform-provider-octopusdeploy/octopusdeploy"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"net/http"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
)

// Config holds Address and the APIKey of the Octopus Deploy server
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/data_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package octopusdeploy
import (
"fmt"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

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

import (
"fmt"
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
"log"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/data_lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package octopusdeploy

import (
"fmt"
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
"log"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/data_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package octopusdeploy
import (
"fmt"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

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

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/data_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

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

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

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

import (
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

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

import (
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/deploy_windows_service_action_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/deployment_action.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package octopusdeploy

import (
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
"strconv"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/deployment_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package octopusdeploy

import (
"fmt"
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
"log"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/deployment_process_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/deployment_step.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package octopusdeploy

import (
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/manual_intervention_action.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package octopusdeploy

import (
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/manual_intervention_action_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/package_reference.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package octopusdeploy

import (
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

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

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_environment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_library_variable_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package octopusdeploy

import (
"fmt"
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
"log"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_library_variable_set_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package octopusdeploy

import (
"fmt"
"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
"log"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_lifecycle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_machine.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package octopusdeploy
import (
"fmt"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_machine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strconv"
"strings"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_project_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_project_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_project_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_variable.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion octopusdeploy/resource_variable_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"testing"

"github.com/MattHodge/go-octopusdeploy/octopusdeploy"
"github.com/OctopusDeploy/go-octopusdeploy/octopusdeploy"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
)
Expand Down

0 comments on commit 0ecd0b5

Please sign in to comment.