Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_apikey.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_apikey_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_contenttype.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_contenttype_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_locale.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_locale_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_space.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_space_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion resource_contentful_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down