Skip to content

Commit f38406c

Browse files
authored
Merge pull request #2 from servicetitan/move-to-st
Removed the package to servicetitan/terraform-provider-sendgrid
2 parents 1c6556d + 79bf692 commit f38406c

25 files changed

+26
-26
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $ make testacc
3030

3131
The documentation is created thank's to a fork of https://github.com/terraform-providers/terraform-provider-baiducloud/tree/master/gendocs.
3232

33-
## [Terraform Registry](https://registry.terraform.io/providers/sapronov-st/sendgrid)
33+
## [Terraform Registry](https://registry.terraform.io/providers/servicetitan/sendgrid)
3434

3535
## Known issues
3636

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/sapronov-st/terraform-provider-sendgrid
1+
module github.com/servicetitan/terraform-provider-sendgrid
22

33
go 1.17
44

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"log"
77

88
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
9-
"github.com/sapronov-st/terraform-provider-sendgrid/sendgrid"
9+
"github.com/servicetitan/terraform-provider-sendgrid/sendgrid"
1010
)
1111

1212
func main() {
@@ -18,7 +18,7 @@ func main() {
1818
opts := &plugin.ServeOpts{ProviderFunc: sendgrid.Provider}
1919

2020
if debugMode {
21-
err := plugin.Debug(context.Background(), "registry.terraform.io/sapronov-st/sendgrid", opts)
21+
err := plugin.Debug(context.Background(), "registry.terraform.io/servicetitan/sendgrid", opts)
2222
if err != nil {
2323
log.Fatal(err.Error())
2424
}

scripts/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"text/template"
1616

1717
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
18-
"github.com/sapronov-st/terraform-provider-sendgrid/sendgrid"
18+
"github.com/servicetitan/terraform-provider-sendgrid/sendgrid"
1919
)
2020

2121
const (

sdk/domain_authentication_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
"testing"
77

8-
sendgrid "github.com/sapronov-st/terraform-provider-sendgrid/sdk"
8+
sendgrid "github.com/servicetitan/terraform-provider-sendgrid/sdk"
99
)
1010

1111
func Test_parseDomainAuthentication(t *testing.T) { //nolint:funlen

sendgrid/data_sendgrid_template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
77
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
8-
sendgrid "github.com/sapronov-st/terraform-provider-sendgrid/sdk"
8+
sendgrid "github.com/servicetitan/terraform-provider-sendgrid/sdk"
99
)
1010

1111
func dataSendgridTemplate() *schema.Resource {

sendgrid/data_sendgrid_template_version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
77
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
8-
sendgrid "github.com/sapronov-st/terraform-provider-sendgrid/sdk"
8+
sendgrid "github.com/servicetitan/terraform-provider-sendgrid/sdk"
99
)
1010

1111
func dataSendgridTemplateVersion() *schema.Resource {

sendgrid/data_sendgrid_unsubscribe_group.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
88
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
9-
sendgrid "github.com/sapronov-st/terraform-provider-sendgrid/sdk"
9+
sendgrid "github.com/servicetitan/terraform-provider-sendgrid/sdk"
1010
)
1111

1212
func dataSendgridUnsubscribeGroup() *schema.Resource {

sendgrid/provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import (
4343

4444
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
4545
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
46-
sendgrid "github.com/sapronov-st/terraform-provider-sendgrid/sdk"
46+
sendgrid "github.com/servicetitan/terraform-provider-sendgrid/sdk"
4747
)
4848

4949
const (

sendgrid/provider_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
8-
"github.com/sapronov-st/terraform-provider-sendgrid/sendgrid"
8+
"github.com/servicetitan/terraform-provider-sendgrid/sendgrid"
99
)
1010

1111
var testAccProviders map[string]*schema.Provider

0 commit comments

Comments
 (0)