Skip to content

Commit 7c09f96

Browse files
author
Brett Mack
committed
Changed vmware-govcd dependency to pull from hmrc
1 parent cb90e6c commit 7c09f96

12 files changed

Lines changed: 15 additions & 15 deletions

builtin/providers/vcd/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"net/url"
66

7-
"github.com/opencredo/vmware-govcd"
7+
"github.com/hmrc/vmware-govcd"
88
)
99

1010
type Config struct {

builtin/providers/vcd/resource_vcd_dnat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package vcd
33
import (
44
"fmt"
55
"github.com/hashicorp/terraform/helper/schema"
6-
"github.com/opencredo/vmware-govcd"
6+
"github.com/hmrc/vmware-govcd"
77
"strings"
88
)
99

builtin/providers/vcd/resource_vcd_dnat_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/hashicorp/terraform/helper/resource"
99
"github.com/hashicorp/terraform/terraform"
10-
"github.com/opencredo/vmware-govcd"
10+
"github.com/hmrc/vmware-govcd"
1111
)
1212

1313
func TestAccVcdDNAT_Basic(t *testing.T) {

builtin/providers/vcd/resource_vcd_firewall_rules.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"github.com/hashicorp/terraform/helper/hashcode"
77
"github.com/hashicorp/terraform/helper/schema"
8-
"github.com/opencredo/vmware-govcd"
9-
types "github.com/opencredo/vmware-govcd/types/v56"
8+
"github.com/hmrc/vmware-govcd"
9+
types "github.com/hmrc/vmware-govcd/types/v56"
1010
"strings"
1111
)
1212

builtin/providers/vcd/resource_vcd_firewall_rules_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
"github.com/hashicorp/terraform/helper/resource"
1111
"github.com/hashicorp/terraform/terraform"
12-
"github.com/opencredo/vmware-govcd"
12+
"github.com/hmrc/vmware-govcd"
1313
)
1414

1515
func TestAccVcdFirewallRules_basic(t *testing.T) {

builtin/providers/vcd/resource_vcd_network.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"github.com/hashicorp/terraform/helper/hashcode"
99
"github.com/hashicorp/terraform/helper/schema"
10-
"github.com/opencredo/vmware-govcd"
11-
types "github.com/opencredo/vmware-govcd/types/v56"
10+
"github.com/hmrc/vmware-govcd"
11+
types "github.com/hmrc/vmware-govcd/types/v56"
1212
"strings"
1313
)
1414

builtin/providers/vcd/resource_vcd_network_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/hashicorp/terraform/helper/resource"
1010
"github.com/hashicorp/terraform/terraform"
11-
"github.com/opencredo/vmware-govcd"
11+
"github.com/hmrc/vmware-govcd"
1212
)
1313

1414
func TestAccVcdNetwork_Basic(t *testing.T) {

builtin/providers/vcd/resource_vcd_snat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package vcd
33
import (
44
"fmt"
55
"github.com/hashicorp/terraform/helper/schema"
6-
"github.com/opencredo/vmware-govcd"
6+
"github.com/hmrc/vmware-govcd"
77
)
88

99
func resourceVcdSNAT() *schema.Resource {

builtin/providers/vcd/resource_vcd_snat_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/hashicorp/terraform/helper/resource"
99
"github.com/hashicorp/terraform/terraform"
10-
"github.com/opencredo/vmware-govcd"
10+
"github.com/hmrc/vmware-govcd"
1111
)
1212

1313
func TestAccVcdSNAT_Basic(t *testing.T) {

builtin/providers/vcd/resource_vcd_vapp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package vcd
33
import (
44
"fmt"
55
"github.com/hashicorp/terraform/helper/schema"
6-
"github.com/opencredo/vmware-govcd"
7-
types "github.com/opencredo/vmware-govcd/types/v56"
6+
"github.com/hmrc/vmware-govcd"
7+
types "github.com/hmrc/vmware-govcd/types/v56"
88
"log"
99
)
1010

0 commit comments

Comments
 (0)