# Range

![Range_logo.svg](https://assets.relyanceuat.xyz/images/docs/6730743126029/6730040676237.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](https://assets.relyanceuat.xyz/images/docs/6730743126029/6740473297549.png)

![Range-3.png](https://assets.relyanceuat.xyz/images/docs/6730743126029/6740430897933.png)

![Range-4.png](https://assets.relyanceuat.xyz/images/docs/6730743126029/6740507913741.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**.
8. Paste the **API Key** into its respective field.

![Range-1.png](https://assets.relyanceuat.xyz/images/docs/6730743126029/6730938236813.png)

The **Authentication** step asks for:

- **API Key**: required; held as a secret.

9. Click **Authenticate**.
10. At this point, you should see the following result on the Vendor Integrations page:

![Range-2.png](https://assets.relyanceuat.xyz/images/docs/6730743126029/6730959207693.png)

11. Congratulations, you are now connected to **Range**.

<!-- terraform-examples:begin (generated from the integration catalog; do not hand-edit) -->

## Manage this integration with Terraform

Connections for this integration can be managed as code with the [Relyance Terraform provider](https://registry.terraform.io/providers/Relyance/relyance/latest). 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`.

```hcl
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 } }
}
```

<!-- terraform-examples:end -->
