/ Docs

Stitch

Last updated October 13, 2025 · View as Markdown

Stitch_Logo.svg Stitch is a web-based open source platform for rapidly moving data. It provides an ETL service that connects to all your data sources and replicates that data to a destination of your choosing.

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

In Stitch:

  1. Login to your Stitch account.
  2. Click on the user profile menu in the top right-hand corner.
  3. Select Manage Account Settings.
  4. In the Account Settings tab scroll down to the API access keys section.
  5. Click the Generate Key button.
  6. Provide a meaningful description for the new key (e.g. Relyance AI) and click the Save and Generate Key button.
  7. This will show your new API Key. Copy it to be used in Relyance then click Close and Continue.

Stitch-3.png

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

Stitch-1.png

The Authentication step asks for:

  • API Key: API access keys genareted for your account; required; held as a secret.
  1. Click Authenticate.
  2. At this point, you should see the following result on the Vendor Integrations page:

Stitch-2.png

  1. Congratulations, you are now connected to Stitch.

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" "stitchdata" {
  vendor = "stitchdata"
  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.stitchdata_api_key
    }
    secrets_wo_version = 1
  }

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