Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: resource sentry_organization_plugin #165

Open
Skeen opened this issue Jun 16, 2022 · 1 comment
Open

Feature Request: resource sentry_organization_plugin #165

Skeen opened this issue Jun 16, 2022 · 1 comment

Comments

@Skeen
Copy link

Skeen commented Jun 16, 2022

Hi,

It appears that the provider currently supports legacy integrations / plugins.

For instance deploying the Gitlab integration:

resource "sentry_plugin" "gitlab" {
  organization = sentry_organization.my_org.id
  project      = sentry_project.my_project.id
  plugin       = "gitlab"

  config = {
    gitlab_url = "https://gitlab.example.com",
    gitlab_repo = "my_project/my_repo"
    gitlab_token = "{{ project_access_token }}"
  }
}

As these integrations are considered legacy, it would be nice to have support for non-legacy intrations / plugins.
I imagine for instance, a resource like:

resource "sentry_organization_plugin" "gitlab" {
  organization = sentry_organization.my_org.id
  plugin       = "gitlab"

  config = {
    url = "https://gitlab.example.com",
    client_id = "{{ application_id_from_gitlab_application }}"
    client_secret = "{{ application_secret_from_gitlab_application }}"
  }
}
@dmitry-mightydevops
Copy link

Is this provider officially supported by the sentry team?
@jianyuan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants