From 7c09f9653dbd5ff103ec295e4f17143b3f9b3cf4 Mon Sep 17 00:00:00 2001 From: Brett Mack Date: Fri, 6 Nov 2015 10:19:59 +0000 Subject: [PATCH] Changed vmware-govcd dependency to pull from hmrc --- builtin/providers/vcd/config.go | 2 +- builtin/providers/vcd/resource_vcd_dnat.go | 2 +- builtin/providers/vcd/resource_vcd_dnat_test.go | 2 +- builtin/providers/vcd/resource_vcd_firewall_rules.go | 4 ++-- builtin/providers/vcd/resource_vcd_firewall_rules_test.go | 2 +- builtin/providers/vcd/resource_vcd_network.go | 4 ++-- builtin/providers/vcd/resource_vcd_network_test.go | 2 +- builtin/providers/vcd/resource_vcd_snat.go | 2 +- builtin/providers/vcd/resource_vcd_snat_test.go | 2 +- builtin/providers/vcd/resource_vcd_vapp.go | 4 ++-- builtin/providers/vcd/resource_vcd_vapp_test.go | 2 +- builtin/providers/vcd/structure.go | 2 +- 12 files changed, 15 insertions(+), 15 deletions(-) diff --git a/builtin/providers/vcd/config.go b/builtin/providers/vcd/config.go index 0768bbc3db..b5da76dba5 100644 --- a/builtin/providers/vcd/config.go +++ b/builtin/providers/vcd/config.go @@ -4,7 +4,7 @@ import ( "fmt" "net/url" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" ) type Config struct { diff --git a/builtin/providers/vcd/resource_vcd_dnat.go b/builtin/providers/vcd/resource_vcd_dnat.go index e949f1da86..b0ffc196cd 100644 --- a/builtin/providers/vcd/resource_vcd_dnat.go +++ b/builtin/providers/vcd/resource_vcd_dnat.go @@ -3,7 +3,7 @@ package vcd import ( "fmt" "github.com/hashicorp/terraform/helper/schema" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" "strings" ) diff --git a/builtin/providers/vcd/resource_vcd_dnat_test.go b/builtin/providers/vcd/resource_vcd_dnat_test.go index ba4bfce134..6e073905b1 100644 --- a/builtin/providers/vcd/resource_vcd_dnat_test.go +++ b/builtin/providers/vcd/resource_vcd_dnat_test.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" ) func TestAccVcdDNAT_Basic(t *testing.T) { diff --git a/builtin/providers/vcd/resource_vcd_firewall_rules.go b/builtin/providers/vcd/resource_vcd_firewall_rules.go index 3581f1179c..0af03009a4 100644 --- a/builtin/providers/vcd/resource_vcd_firewall_rules.go +++ b/builtin/providers/vcd/resource_vcd_firewall_rules.go @@ -5,8 +5,8 @@ import ( "fmt" "github.com/hashicorp/terraform/helper/hashcode" "github.com/hashicorp/terraform/helper/schema" - "github.com/opencredo/vmware-govcd" - types "github.com/opencredo/vmware-govcd/types/v56" + "github.com/hmrc/vmware-govcd" + types "github.com/hmrc/vmware-govcd/types/v56" "strings" ) diff --git a/builtin/providers/vcd/resource_vcd_firewall_rules_test.go b/builtin/providers/vcd/resource_vcd_firewall_rules_test.go index 96e2c3e3d7..3b7a4e90a1 100644 --- a/builtin/providers/vcd/resource_vcd_firewall_rules_test.go +++ b/builtin/providers/vcd/resource_vcd_firewall_rules_test.go @@ -9,7 +9,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" ) func TestAccVcdFirewallRules_basic(t *testing.T) { diff --git a/builtin/providers/vcd/resource_vcd_network.go b/builtin/providers/vcd/resource_vcd_network.go index c98527e926..c984d708ec 100644 --- a/builtin/providers/vcd/resource_vcd_network.go +++ b/builtin/providers/vcd/resource_vcd_network.go @@ -7,8 +7,8 @@ import ( "fmt" "github.com/hashicorp/terraform/helper/hashcode" "github.com/hashicorp/terraform/helper/schema" - "github.com/opencredo/vmware-govcd" - types "github.com/opencredo/vmware-govcd/types/v56" + "github.com/hmrc/vmware-govcd" + types "github.com/hmrc/vmware-govcd/types/v56" "strings" ) diff --git a/builtin/providers/vcd/resource_vcd_network_test.go b/builtin/providers/vcd/resource_vcd_network_test.go index 6bfd840bb0..2d260bc03b 100644 --- a/builtin/providers/vcd/resource_vcd_network_test.go +++ b/builtin/providers/vcd/resource_vcd_network_test.go @@ -8,7 +8,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" ) func TestAccVcdNetwork_Basic(t *testing.T) { diff --git a/builtin/providers/vcd/resource_vcd_snat.go b/builtin/providers/vcd/resource_vcd_snat.go index 08a9b4023a..afae155505 100644 --- a/builtin/providers/vcd/resource_vcd_snat.go +++ b/builtin/providers/vcd/resource_vcd_snat.go @@ -3,7 +3,7 @@ package vcd import ( "fmt" "github.com/hashicorp/terraform/helper/schema" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" ) func resourceVcdSNAT() *schema.Resource { diff --git a/builtin/providers/vcd/resource_vcd_snat_test.go b/builtin/providers/vcd/resource_vcd_snat_test.go index bf3eced14b..66351f2a15 100644 --- a/builtin/providers/vcd/resource_vcd_snat_test.go +++ b/builtin/providers/vcd/resource_vcd_snat_test.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" ) func TestAccVcdSNAT_Basic(t *testing.T) { diff --git a/builtin/providers/vcd/resource_vcd_vapp.go b/builtin/providers/vcd/resource_vcd_vapp.go index 1add00412a..ee50d63ea2 100644 --- a/builtin/providers/vcd/resource_vcd_vapp.go +++ b/builtin/providers/vcd/resource_vcd_vapp.go @@ -3,8 +3,8 @@ package vcd import ( "fmt" "github.com/hashicorp/terraform/helper/schema" - "github.com/opencredo/vmware-govcd" - types "github.com/opencredo/vmware-govcd/types/v56" + "github.com/hmrc/vmware-govcd" + types "github.com/hmrc/vmware-govcd/types/v56" "log" ) diff --git a/builtin/providers/vcd/resource_vcd_vapp_test.go b/builtin/providers/vcd/resource_vcd_vapp_test.go index bb6e9874a7..e4e44647a3 100644 --- a/builtin/providers/vcd/resource_vcd_vapp_test.go +++ b/builtin/providers/vcd/resource_vcd_vapp_test.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - "github.com/opencredo/vmware-govcd" + "github.com/hmrc/vmware-govcd" ) func TestAccVcdVApp_PowerOff(t *testing.T) { diff --git a/builtin/providers/vcd/structure.go b/builtin/providers/vcd/structure.go index b243cdf8bf..2893514696 100644 --- a/builtin/providers/vcd/structure.go +++ b/builtin/providers/vcd/structure.go @@ -2,7 +2,7 @@ package vcd import ( "github.com/hashicorp/terraform/helper/resource" - types "github.com/opencredo/vmware-govcd/types/v56" + types "github.com/hmrc/vmware-govcd/types/v56" "strconv" "time" )