diff --git a/install-dependencies.sh b/install-dependencies.sh index 656d26a..f6f0640 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -4,4 +4,4 @@ go get github.com/hashicorp/terraform/terraform go get github.com/hashicorp/terraform/helper/resource go get github.com/hashicorp/terraform/helper/schema -go get github.com/tolgaakyuz/contentful-go +go get github.com/contentful-labs/contentful-go diff --git a/provider.go b/provider.go index 9e47ad8..62ec5c7 100644 --- a/provider.go +++ b/provider.go @@ -5,7 +5,7 @@ import ( "github.com/hashicorp/terraform/helper/schema" "github.com/hashicorp/terraform/terraform" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) // Provider does shit diff --git a/resource_contentful_apikey.go b/resource_contentful_apikey.go index 1874f53..9d4cb87 100644 --- a/resource_contentful_apikey.go +++ b/resource_contentful_apikey.go @@ -2,7 +2,7 @@ package main import ( "github.com/hashicorp/terraform/helper/schema" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func resourceContentfulAPIKey() *schema.Resource { diff --git a/resource_contentful_apikey_test.go b/resource_contentful_apikey_test.go index bc1542a..77d6115 100644 --- a/resource_contentful_apikey_test.go +++ b/resource_contentful_apikey_test.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func TestAccContentfulAPIKey_Basic(t *testing.T) { diff --git a/resource_contentful_contenttype.go b/resource_contentful_contenttype.go index bee476a..694dbf0 100644 --- a/resource_contentful_contenttype.go +++ b/resource_contentful_contenttype.go @@ -2,7 +2,7 @@ package main import ( "github.com/hashicorp/terraform/helper/schema" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func resourceContentfulContentType() *schema.Resource { diff --git a/resource_contentful_contenttype_test.go b/resource_contentful_contenttype_test.go index cd1fcc5..3e53b08 100644 --- a/resource_contentful_contenttype_test.go +++ b/resource_contentful_contenttype_test.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func TestAccContentfulContentType_Basic(t *testing.T) { diff --git a/resource_contentful_locale.go b/resource_contentful_locale.go index 9983222..5c5b2b0 100644 --- a/resource_contentful_locale.go +++ b/resource_contentful_locale.go @@ -2,7 +2,7 @@ package main import ( "github.com/hashicorp/terraform/helper/schema" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func resourceContentfulLocale() *schema.Resource { diff --git a/resource_contentful_locale_test.go b/resource_contentful_locale_test.go index f6e06aa..a48192c 100644 --- a/resource_contentful_locale_test.go +++ b/resource_contentful_locale_test.go @@ -7,7 +7,7 @@ import ( "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func TestAccContentfulLocales_Basic(t *testing.T) { diff --git a/resource_contentful_space.go b/resource_contentful_space.go index ee1d4e1..528795f 100644 --- a/resource_contentful_space.go +++ b/resource_contentful_space.go @@ -2,7 +2,7 @@ package main import ( "github.com/hashicorp/terraform/helper/schema" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func resourceContentfulSpace() *schema.Resource { diff --git a/resource_contentful_space_test.go b/resource_contentful_space_test.go index da1e9e5..28b575a 100644 --- a/resource_contentful_space_test.go +++ b/resource_contentful_space_test.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func TestAccContentfulSpace_Basic(t *testing.T) { diff --git a/resource_contentful_webhook.go b/resource_contentful_webhook.go index e7830bd..9f29152 100644 --- a/resource_contentful_webhook.go +++ b/resource_contentful_webhook.go @@ -2,7 +2,7 @@ package main import ( "github.com/hashicorp/terraform/helper/schema" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func resourceContentfulWebhook() *schema.Resource { diff --git a/resource_contentful_webhook_test.go b/resource_contentful_webhook_test.go index c35e59f..26c54b1 100644 --- a/resource_contentful_webhook_test.go +++ b/resource_contentful_webhook_test.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform/helper/resource" "github.com/hashicorp/terraform/terraform" - contentful "github.com/tolgaakyuz/contentful-go" + contentful "github.com/contentful-labs/contentful-go" ) func TestAccContentfulWebhook_Basic(t *testing.T) {