/ Docs

Jetbrains Youtrack

Last updated October 13, 2025 · View as Markdown

Youtrack_logo.svg YouTrack is an online project and team management platform created by JetBrains. It is a bug tracking, issue tracking system, and project management software.

In order to integrate YouTrack with Relyance AI you will need an API Token and YouTrack Cloud Instance.

In YouTrack:

  1. Login to your Youtrack account.
  2. Your YouTrack Cloud Instance will be found in the URL of your instance.

YouTrack-5.png

  1. Click on your profile icon at the top-right hand corner and select Profile.
  2. In the profile page, click Account Security.
  3. Under the Tokens section, click the New token... button.
  4. Fill out the New Permanent Token dialog with: Name: Provide a meaningful name (e.g. Relyance Scan) Scope: Select YouTrack, YouTrack Administration
  5. Click Create. In the resulting dialog, copy the API Token to be used in Relyance.

YouTrack-3.png

YouTrack-4.png

In the Relyance AI application:

  1. Login to your Relyance account.
  2. Navigate to the Settings Menu in the bottom left-hand side.
  3. Select Integrations.
  4. Click on the Vendor Integration tab.
  5. Find the JetBrains integration card and click it to open its connections.
  6. Under Authentication Method, choose JetBrains (YouTrack) Custom.
  7. Paste the API Token and YouTrack Cloud Instance into their respective fields.

YouTrack-1.png

  1. Click Authenticate.
  2. At this point, you should see the following result on the Vendor Integrations page:

YouTrack-2.png

  1. Congratulations, you are now connected to YouTrack.

If the connection reports Connected but returns nothing

These are the ways this integration comes back empty without reporting an error. Generated from the integration catalog, so it tracks what the connection actually asks for.

  1. A credential rotated at the vendor is not picked up here. API Token is stored when you save the connection, so regenerating the value at the vendor breaks the next scan until it is re-pasted here. Recording the expiry on the connection means Relyance warns you before it lapses.
  2. Check the address fields before suspecting the credentials. YouTrack Cloud Instance identifies which tenant, region or host to talk to. A wrong value there fails authentication and looks exactly like a bad secret.

Authentication methods and fields

Pick one of these under Authentication Method on the connection wizard's Authentication step. This table is generated from the integration catalog, so it always matches what the form actually asks for.

Method Required Optional
Jetbrains(You Track) Custom API Token (secret), YouTrack Cloud Instance

Manage this integration with Terraform

Connections for this integration can be managed as code with the Relyance Terraform provider. Non-secret fields go in auth.params; secret fields go in auth.secrets_wo, which is write-only — never stored in Terraform state. Rotate secrets by bumping auth.secrets_wo_version.

resource "relyance_integration_connection" "jetbrains" {
  vendor = "jetbrains"
  name   = "<your connection name>"

  auth = {
    method = "api-token"
    params = {
      instance = "<instance>"
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      api_token = var.jetbrains_api_token
    }
    secrets_wo_version = 1
  }

  scans = { "property-inspection" = { enabled = true } }
}