Height
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:
- Login to your Height account.
- 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.
- In the settings menu, under Product settings choose API.
- Copy the Secret Key to be used in Relyance.


In the Relyance AI application:
- Login to your Relyance account.
- Navigate to the Settings Menu in the bottom left-hand side.
- Select Integrations.
- Click on the Vendor Integration tab.
- Find the Height integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the Secret Key into its respective field.

The Authentication step asks for:
- Secret key: required; held as a secret.
- Click Authenticate.
- At this point, you should see the following result on the Vendor Integrations page:

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