Skip to content

Commit

Permalink
Merge pull request #55 from MeilleursAgents/bumping_v2
Browse files Browse the repository at this point in the history
Bumping to v2
  • Loading branch information
ViBiOh authored Dec 5, 2019
2 parents 126a48e + 044e5ea commit 45c2deb
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ changes, it is recommended to add version = "..." constraints to the
corresponding provider blocks in configuration, with the constraint strings
suggested below.

* provider.ansiblevault: version = "~> 1.3"
* provider.ansiblevault: version = "~> 2.0"

Terraform has been successfully initialized!

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/MeilleursAgents/terraform-provider-ansiblevault
module github.com/MeilleursAgents/terraform-provider-ansiblevault/v2

go 1.12

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

import (
"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/provider"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/provider"
"github.com/hashicorp/terraform/plugin"
"github.com/hashicorp/terraform/terraform"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/in_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/in_env_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path"
"testing"

"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
)

func TestInEnvRead(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/in_path.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
"github.com/hashicorp/terraform/helper/schema"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/in_path_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path"
"testing"

"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
)

func TestInPathRead(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/in_string.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package provider
import (
"time"

"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
"github.com/hashicorp/terraform/helper/schema"
)

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

"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
)

func TestInStringRead(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package provider
*/

import (
"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
"github.com/hashicorp/terraform/helper/schema"
)

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

"github.com/MeilleursAgents/terraform-provider-ansiblevault/pkg/vault"
"github.com/MeilleursAgents/terraform-provider-ansiblevault/v2/pkg/vault"
)

const (
Expand Down

0 comments on commit 45c2deb

Please sign in to comment.