diff --git a/builtin/providers/consul/config.go b/builtin/providers/consul/config.go index 868907f6f7..747df8bb96 100644 --- a/builtin/providers/consul/config.go +++ b/builtin/providers/consul/config.go @@ -3,7 +3,7 @@ package consul import ( "log" - "github.com/armon/consul-api" + consulapi "github.com/hashicorp/consul/api" ) type Config struct { diff --git a/builtin/providers/consul/resource_consul_keys.go b/builtin/providers/consul/resource_consul_keys.go index bdadf12019..58000d7f74 100644 --- a/builtin/providers/consul/resource_consul_keys.go +++ b/builtin/providers/consul/resource_consul_keys.go @@ -6,7 +6,7 @@ import ( "log" "strconv" - "github.com/armon/consul-api" + consulapi "github.com/hashicorp/consul/api" "github.com/hashicorp/terraform/helper/hashcode" "github.com/hashicorp/terraform/helper/schema" ) diff --git a/builtin/providers/consul/resource_consul_keys_test.go b/builtin/providers/consul/resource_consul_keys_test.go index c0f1324867..e1a959b7df 100644 --- a/builtin/providers/consul/resource_consul_keys_test.go +++ b/builtin/providers/consul/resource_consul_keys_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/armon/consul-api" + consulapi "github.com/hashicorp/consul/api" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" ) diff --git a/builtin/providers/consul/resource_provider_test.go b/builtin/providers/consul/resource_provider_test.go index ad2b298981..d78cb741e2 100644 --- a/builtin/providers/consul/resource_provider_test.go +++ b/builtin/providers/consul/resource_provider_test.go @@ -3,7 +3,7 @@ package consul import ( "testing" - "github.com/armon/consul-api" + consulapi "github.com/hashicorp/consul/api" "github.com/hashicorp/terraform/config" "github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/terraform" diff --git a/remote/consul.go b/remote/consul.go index 0928935a90..afb7ee5bee 100644 --- a/remote/consul.go +++ b/remote/consul.go @@ -4,7 +4,7 @@ import ( "crypto/md5" "fmt" - "github.com/armon/consul-api" + consulapi "github.com/hashicorp/consul/api" ) // ConsulRemoteClient implements the RemoteClient interface diff --git a/remote/consul_test.go b/remote/consul_test.go index e337447c08..ce05094a08 100644 --- a/remote/consul_test.go +++ b/remote/consul_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/armon/consul-api" + consulapi "github.com/hashicorp/consul/api" "github.com/hashicorp/terraform/terraform" )