/ Docs

Split

Last updated October 13, 2025 · View as Markdown

Split_Logo_Hero.png Split is a software delivery platform to help engineering teams build and validate impactful products. It provides feature flag management, software experimentation, and continuous delivery.

In order to integrate Split with Relyance AI you will need an API Key.

In Split:

  1. Login to your Split account.
  2. Navigate to Admin Settings by clicking the Profile Icon in the upper left corner of the screen (make sure you select Admin Settings not My Settings).
  3. Select API Keys from the navigation items on the left and click Create API Key.

split-3.png

split-1.png

  1. Give your API key a descriptive name like ‘relyance-admin-api-key’ and Select type: Admin.
  2. Click Create.
  3. Find your new API key in the list and click Copy.

split-6.png

split-2.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 Split Software integration card and click it to open its connections.
  6. Under Authentication Method, choose Custom.
  7. Paste the API Key into its respective field.

Split-7.png

The Authentication step asks for:

  • API Key: required; held as a secret.
  1. Click Authenticate.
  2. At this point, you should see the following result on the Vendor Integrations page:
  3. Congratulations, you are now connected to Split.

Split-8.png

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" "splitsoftware" {
  vendor = "splitsoftware"
  name   = "<your connection name>"

  auth = {
    method = "api-key"
    params = {
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      api_key = var.splitsoftware_api_key
    }
    secrets_wo_version = 1
  }

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