diff options
author | Alexandre Garand <alexandre.garand@fretlink.com> | 2019-07-04 14:34:42 +0200 |
---|---|---|
committer | Alexandre Garand <alexandre.garand@fretlink.com> | 2019-07-04 18:16:41 +0200 |
commit | 7c735cfa47853c88a53753173ccf56e364295f27 (patch) | |
tree | 8a9eaec4fdbc35ddfa0b371316d049e1ee9b291d /mailgun | |
parent | 80e82d1365343acdd54bca9e1c94dfe03b913600 (diff) | |
download | terraform-provider-mailgun-7c735cfa47853c88a53753173ccf56e364295f27.tar.gz terraform-provider-mailgun-7c735cfa47853c88a53753173ccf56e364295f27.tar.zst terraform-provider-mailgun-7c735cfa47853c88a53753173ccf56e364295f27.zip |
add travis, go.mod and vendor/ in order to have automatic testing
Diffstat (limited to 'mailgun')
-rw-r--r-- | mailgun/provider.go | 2 | ||||
-rw-r--r-- | mailgun/resource_mailgun_domain.go | 2 | ||||
-rw-r--r-- | mailgun/resource_mailgun_domain_test.go | 2 | ||||
-rw-r--r-- | mailgun/resource_mailgun_route.go | 2 | ||||
-rw-r--r-- | mailgun/resource_mailgun_route_test.go | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/mailgun/provider.go b/mailgun/provider.go index 2133777..90ea5e5 100644 --- a/mailgun/provider.go +++ b/mailgun/provider.go | |||
@@ -3,7 +3,7 @@ package mailgun | |||
3 | import ( | 3 | import ( |
4 | "github.com/hashicorp/terraform/helper/schema" | 4 | "github.com/hashicorp/terraform/helper/schema" |
5 | "github.com/hashicorp/terraform/terraform" | 5 | "github.com/hashicorp/terraform/terraform" |
6 | "github.com/mailgun/mailgun-go" | 6 | "github.com/mailgun/mailgun-go/v3" |
7 | ) | 7 | ) |
8 | 8 | ||
9 | func Provider() terraform.ResourceProvider { | 9 | func Provider() terraform.ResourceProvider { |
diff --git a/mailgun/resource_mailgun_domain.go b/mailgun/resource_mailgun_domain.go index f859230..1fcba83 100644 --- a/mailgun/resource_mailgun_domain.go +++ b/mailgun/resource_mailgun_domain.go | |||
@@ -4,7 +4,7 @@ import ( | |||
4 | "context" | 4 | "context" |
5 | "fmt" | 5 | "fmt" |
6 | "github.com/hashicorp/terraform/helper/schema" | 6 | "github.com/hashicorp/terraform/helper/schema" |
7 | "github.com/mailgun/mailgun-go" | 7 | "github.com/mailgun/mailgun-go/v3" |
8 | "log" | 8 | "log" |
9 | "time" | 9 | "time" |
10 | ) | 10 | ) |
diff --git a/mailgun/resource_mailgun_domain_test.go b/mailgun/resource_mailgun_domain_test.go index c35df48..6096c60 100644 --- a/mailgun/resource_mailgun_domain_test.go +++ b/mailgun/resource_mailgun_domain_test.go | |||
@@ -5,7 +5,7 @@ import ( | |||
5 | "fmt" | 5 | "fmt" |
6 | "github.com/hashicorp/terraform/helper/resource" | 6 | "github.com/hashicorp/terraform/helper/resource" |
7 | "github.com/hashicorp/terraform/terraform" | 7 | "github.com/hashicorp/terraform/terraform" |
8 | "github.com/mailgun/mailgun-go" | 8 | "github.com/mailgun/mailgun-go/v3" |
9 | "os" | 9 | "os" |
10 | "strconv" | 10 | "strconv" |
11 | "testing" | 11 | "testing" |
diff --git a/mailgun/resource_mailgun_route.go b/mailgun/resource_mailgun_route.go index e19b67f..cf8290f 100644 --- a/mailgun/resource_mailgun_route.go +++ b/mailgun/resource_mailgun_route.go | |||
@@ -4,7 +4,7 @@ import ( | |||
4 | "context" | 4 | "context" |
5 | "fmt" | 5 | "fmt" |
6 | "github.com/hashicorp/terraform/helper/schema" | 6 | "github.com/hashicorp/terraform/helper/schema" |
7 | "github.com/mailgun/mailgun-go" | 7 | "github.com/mailgun/mailgun-go/v3" |
8 | "log" | 8 | "log" |
9 | "time" | 9 | "time" |
10 | ) | 10 | ) |
diff --git a/mailgun/resource_mailgun_route_test.go b/mailgun/resource_mailgun_route_test.go index b3806c2..2d7b221 100644 --- a/mailgun/resource_mailgun_route_test.go +++ b/mailgun/resource_mailgun_route_test.go | |||
@@ -5,7 +5,7 @@ import ( | |||
5 | "fmt" | 5 | "fmt" |
6 | "github.com/hashicorp/terraform/helper/resource" | 6 | "github.com/hashicorp/terraform/helper/resource" |
7 | "github.com/hashicorp/terraform/terraform" | 7 | "github.com/hashicorp/terraform/terraform" |
8 | "github.com/mailgun/mailgun-go" | 8 | "github.com/mailgun/mailgun-go/v3" |
9 | "strconv" | 9 | "strconv" |
10 | "testing" | 10 | "testing" |
11 | "time" | 11 | "time" |