Skip to content

Commit 352550f

Browse files
committed
Switch to using labd/sentry as terraform provider
1 parent 35ff174 commit 352550f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.1.4 (2023-07-05)
2+
- Switch to using labd/sentry v1.0.1 as terraform provider. This release
3+
includes optimzations for reading existing sentry keys.
4+
15
# 0.1.3 (2023-02-17)
26
- Support the unmanaged mode whereby we only pass a DSN to the config
37

internal/plugin.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type SentryPlugin struct {
1818

1919
func NewSentryPlugin() schema.MachComposerPlugin {
2020
state := &SentryPlugin{
21-
provider: "0.11.1",
21+
provider: "1.0.1",
2222
siteConfigs: map[string]*SiteConfig{},
2323
}
2424

@@ -101,7 +101,7 @@ func (p *SentryPlugin) TerraformRenderProviders(site string) (string, error) {
101101
}
102102
result := fmt.Sprintf(`
103103
sentry = {
104-
source = "jianyuan/sentry"
104+
source = "labd/sentry"
105105
version = "%s"
106106
}`, helpers.VersionConstraint(p.provider))
107107
return result, nil

0 commit comments

Comments
 (0)