/ Docs

Height

Last updated October 13, 2025 · View as Markdown

Height_logo.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

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

Height-2.png

The Authentication step asks for:

  • Secret key: required; held as a secret.
  1. Click Authenticate.
  2. At this point, you should see the following result on the Vendor Integrations page:

Height-1.png

  1. Congratulations, you are now connected to Height.

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" "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 } }
}