Skip to content

Commit e6872e6

Browse files
authored
Merge pull request #38 from aedades/update-terraform-0.12
Support terraform 0.12
2 parents 77a6d38 + ee48edc commit e6872e6

File tree

4 files changed

+99
-12
lines changed

4 files changed

+99
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Folders
77
_obj
88
_test
9+
vendor
910

1011
# Architecture specific extensions/prefixes
1112
*.[568vq]

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,3 +243,18 @@ To import a project:
243243
```bash
244244
$ terraform import sentry_project.default org-slug/project-slug
245245
```
246+
247+
## Development
248+
249+
### Test
250+
251+
Test the provider by running `make test`.
252+
253+
Make sure to set the following environment variables:
254+
255+
- `SENTRY_TEST_ORGANIZATION`
256+
- `SENTRY_TOKEN`
257+
258+
### Build
259+
260+
See the [Writing Custom Providers page of the Terraform documentation](https://www.terraform.io/docs/extend/writing-custom-providers.html#building-the-plugin) for instructions.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/jianyuan/terraform-provider-sentry
22

33
require (
44
github.com/hashicorp/hcl v1.0.0 // indirect
5-
github.com/hashicorp/terraform v0.12.0
5+
github.com/hashicorp/terraform v0.12.4
66
github.com/hashicorp/yamux v0.0.0-20180917205041-7221087c3d28 // indirect
77
github.com/jianyuan/go-sentry v1.2.0
88
github.com/mitchellh/go-homedir v1.1.0 // indirect

0 commit comments

Comments
 (0)