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

Status Code 409 when iterating Sentry Projects #274

Closed
chrismaille opened this issue Jan 31, 2023 · 1 comment
Closed

Status Code 409 when iterating Sentry Projects #274

chrismaille opened this issue Jan 31, 2023 · 1 comment

Comments

@chrismaille
Copy link

Code to reproduce

terraform {
    sentry = {
      source  = "jianyuan/sentry"
      version = "0.11.2"
    }
  }
}
provider "sentry" {
  token = var.SentryToken
}

resource "sentry_project" "sentry" {
  for_each = toset(["project_a", "project_b"])

  organization = var.SentryOrganization

  teams = [var.SentryTeam]
  name  = each.value
  slug  = each.value

  platform    = "python"
  resolve_age = 720
}

Error

Error: POST https://sentry.io/api/0/teams/my-org/owner/projects/: 409 Max allowed ID retry reached. Please try again in a second
with module.server.sentry_project.sentry["project_a"]
on server/pipeline.tf line 24, in resource "sentry_project" "sentry":

Can you help us?

@JoshuaKahn
Copy link

JoshuaKahn commented Mar 31, 2023

Have also run into this, would hopefully appreciate a dev look.

@chrismaille chrismaille closed this as not planned Won't fix, can't repro, duplicate, stale Oct 6, 2023
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