terraform-provider-sentry
terraform-provider-sentry copied to clipboard
Terraform provider for Sentry
will fix https://github.com/jianyuan/terraform-provider-sentry/issues/230
When modeling existing Sentry org and projects to terraform the plan will by default create all the resources as new entities in Sentry. As the Sentry UI does not show...
Bumps google.golang.org/protobuf from 1.32.0 to 1.33.0. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Today we have to register manually the Slack channel of every time. This is time consuming and error prone. By adding the team Slack channel to the sentry_team, we would...
Conditions are required, but can be set as empty array. Previously if empty array would be set in tf config, null would be set in tf state after apply, which...
Hi, After `terraform apply` for the first time and create a resource similar to the following: ```hcl # Create an inbound data filter to ignore issues raised from legacy browsers...
Hi, After applying my terraform plan, I've tried to run `terraform destroy`. My plan included destroying resources of type `sentry_project_inbound_data_filter`. When applying, I get the following errors: ```hcl │ Error:...
Sentry opsgenie integration can be configured using api keys inside a configuration table: https://docs.sentry.io/product/integrations/notification-incidents/opsgenie/#configure When creating an issue alert we can specify: ... "team": "" ... The team value must...
Hi. I'm facing the following error when I'm trying to use Sentry provider into an isolated environment where the internet outbound traffic is restricted. https://github.com/jianyuan/terraform-provider-sentry/blob/main/sentry/resource_sentry_project.go#L396 Could we set an option...
### Inconsistent terraform state Example: ``` resource "sentry_project" "default" { organization = "my-organization" teams = ["my-first-team"] name = "test-service" platform = "java" } # Create a notification action for the...