Trello
Trello is a web-based flexible work management tool where teams cn ideate plans, collaborate on projects, organize workflows, and track progress. It allows users to manage any type of project, workflow, or task tracking.
In order to integrate Trello with Relyance AI you will need a Personal Key and Token.
In Trello:
- Login to your Trello account.
- Go here: https://trello.com/app-key
- Copy your Personal Key to be used in Relyance.
- Click on the Token link to generate a token for your Trello account.
- Click Allow.
- Copy the newly created Token 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 Trello integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the Personal Key and Token into their respective fields.

The Authentication step asks for:
- Personal Key: required; held as a secret.
- Token: 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 Trello.
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" "trello" {
vendor = "trello"
name = "<your connection name>"
auth = {
method = "access-token"
params = {
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
key = var.trello_key
token = var.trello_token
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}