# Height

![Height_logo.png](https://assets.relyanceuat.xyz/images/docs/10137459114509/10138548708493.png)
Height is a web-based all-in-one project management tool and wanted to be the place you can visualize all of your work. It provides real-time tasks, chat, and powerful customization to get everyone on the same page.

In order to integrate Height with Relyance AI you will need a **Secret Key**.

#### In Height:

1. Login to your Height account.
2. In the top left-hand corner click the workspace name and select the workspace you would like to integrate with. Select **Settings** from this dropdown menu.
3. In the settings menu, under **Product settings** choose **API**.
4. Copy the **Secret Key** to be used in Relyance.

![Height-3.png](https://assets.relyanceuat.xyz/images/docs/10137459114509/10140978435341.png)

![Height-4.png](https://assets.relyanceuat.xyz/images/docs/10137459114509/10140978429197.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 **Height** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **Secret Key** into its respective field.

![Height-2.png](https://assets.relyanceuat.xyz/images/docs/10137459114509/10140690749965.png)

The **Authentication** step asks for:

- **Secret key**: required; held as a secret.

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

![Height-1.png](https://assets.relyanceuat.xyz/images/docs/10137459114509/10140690751885.png)

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

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

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

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

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