Skip to content

Commit

Permalink
Updated Module
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinand-c committed Nov 14, 2022
1 parent f4543bc commit 25fdb70
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Using the provider
terraform {
required_providers {
bitbucket = {
source = "DrFaust92/bitbucket"
source = "strollby/bitbucket"
version = "version-here"
}
}
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/data_hook_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"net/http"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/strollby/bitbucket-go-client"
)

func dataHookTypes() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/data_workspace_members.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/json"
"fmt"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/strollby/bitbucket-go-client"
)

func dataWorkspaceMembers() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"log"
"net/http"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/strollby/bitbucket-go-client"
)

type ProviderConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_branch_restriction.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"net/url"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/strollby/bitbucket-go-client"
)

// BranchRestriction is the data we need to send to create a new branch restriction for the repository
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_deployment_variable.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"
"time"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/strollby/bitbucket-go-client"
)

func resourceDeploymentVariable() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_forked_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import (
"net/http"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/antihax/optional"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/strollby/bitbucket-go-client"
)

func resourceForkedRepository() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_pipeline_schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"net/http"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/strollby/bitbucket-go-client"
)

func resourcePipelineSchedule() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_pipeline_ssh_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"net/http"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/strollby/bitbucket-go-client"
)

func resourcePipelineSshKey() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_pipeline_ssh_known_host.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"net/http"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/strollby/bitbucket-go-client"
)

func resourcePipelineSshKnownHost() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_project.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"net/http"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/strollby/bitbucket-go-client"
)

func resourceProject() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"regexp"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/antihax/optional"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/strollby/bitbucket-go-client"
)

func resourceRepository() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_repository_variable.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"net/http"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/strollby/bitbucket-go-client"
)

func resourceRepositoryVariable() *schema.Resource {
Expand Down
2 changes: 1 addition & 1 deletion bitbucket/resource_ssh_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"net/http"
"strings"

"github.com/DrFaust92/bitbucket-go-client"
"github.com/antihax/optional"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/strollby/bitbucket-go-client"
)

// sshKey is the data we need to send to create a new SSH Key for the repository
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/terraform-providers/terraform-provider-bitbucket

require (
github.com/DrFaust92/bitbucket-go-client v0.2.1
github.com/antihax/optional v1.0.0
github.com/hashicorp/terraform-plugin-sdk/v2 v2.21.0
github.com/satori/go.uuid v1.2.0
github.com/strollby/bitbucket-go-client v0.1.2
golang.org/x/crypto v0.0.0-20220817201139-bc19a97f63c8
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/DrFaust92/bitbucket-go-client v0.2.1 h1:hFdYMnfwowTubnXSQN35Q/ymIgai9hevYZArayxcV9s=
github.com/DrFaust92/bitbucket-go-client v0.2.1/go.mod h1:y9g+ROPqDQn9eEyXIUCcXunYQmO7rxcNU17ZdPtHk2A=
github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA=
github.com/Microsoft/go-winio v0.4.16 h1:FtSW/jqD+l4ba5iPBj9CODVtgfYAD8w2wS923g/cFDk=
github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0=
Expand Down Expand Up @@ -198,6 +196,8 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.7.2 h1:4jaiDzPyXQvSd7D0EjG45355tLlV3VOECpq10pLC+8s=
github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
github.com/strollby/bitbucket-go-client v0.1.2 h1:ZWYX/qFLw3MQi8K94lJi+ae4GMQowHFKgY4J9bEb6Eg=
github.com/strollby/bitbucket-go-client v0.1.2/go.mod h1:+nlIVoy2Ox+BhgnEK1HjtX7IMVvXCLyoDkGzktH9Gpc=
github.com/vmihailenco/msgpack v3.3.3+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk=
github.com/vmihailenco/msgpack v4.0.4+incompatible h1:dSLoQfGFAo3F6OoNhwUmLwVgaUXK79GlxNBwueZn0xI=
github.com/vmihailenco/msgpack v4.0.4+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk=
Expand Down

0 comments on commit 25fdb70

Please sign in to comment.