Jian Yuan Lee

Results 25 comments of Jian Yuan Lee

Here's what I came up with: ```python class SubApp: def __init__(self) -> None: self.actions = [] self.events = [] self.views = [] def action(self, *args, **kwargs): def __call__(func): self.actions.append((args, kwargs,...

I agree with @thetimbecker. I'll close this for now.

This is now possible since [v0.10.0](https://github.com/jianyuan/terraform-provider-sentry/releases/tag/v0.10.0) 🎉

Continued in https://github.com/jianyuan/terraform-provider-sentry/pull/217

This is now possible since [v0.10.0](https://github.com/jianyuan/terraform-provider-sentry/releases/tag/v0.10.0).

I'm having the same issue. Setting `modal=false` to the dropdown menu component fixes the issue for me. ``` ... ```

[The `sentry_organization_integration` data source is already available since v0.10.0](https://registry.terraform.io/providers/jianyuan/sentry/latest/docs/data-sources/organization_integration). The next release will include updated docs demonstrating usage. [You can get a preview of it here](https://github.com/jianyuan/terraform-provider-sentry/blob/786461ee30de49ff67173dbdf84635d1aa194a9a/docs/resources/metric_alert.md#example-usage).

I plan to investigate this further this weekend. I suspect we need a custom diff suppressor function.

Unfortunately, the diff suppressor doesn't work for lists: https://github.com/hashicorp/terraform-plugin-sdk/issues/477 I will have to do something more advanced in the Read method.