/ Docs

Range

Last updated October 13, 2025 · View as Markdown

Range_logo.svg Range web-based software as a service (SaaS) for team collaboration. It is the place for remote and hybrid teams to check in with each other, both async and real-time.

In order to integrate Range with Relyance AI you will need a Range API Key.

In Range:

  1. Login to your Range account.
  2. Click on Settings in the left-hand navigation settings.
  3. Click on Developer in the left-hand navigation Settings sub-menu.
  4. Select the + New API Key link to create a new key.
  5. Copy the new key to be used in Relyance AI.

Range-5.png

Range-3.png

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

Range-1.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:

Range-2.png

  1. Congratulations, you are now connected to Range.

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

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