Lever
Lever is an online Talent Acquisition Suite that makes it easy for talent teams to reach their hiring goals and to connect companies with top talent.
In order to integrate Lever with Relyance AI you will need a Lever API Key.
In Lever:
- Login to your Lever account as an Administrator.
- To generate API Key, follow the instructions here.
- Copy the API Key to be used in Relyance Integration.
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 Lever integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the Lever API Key into respective field.

The Authentication step asks for:
- API 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 Lever.
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" "leverrecruiting" {
vendor = "leverrecruiting"
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.leverrecruiting_api_key
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}