# Trello

![trello-logo.svg](https://assets.relyanceuat.xyz/images/docs/10482715697037/10482616257165.svg)
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:

1. Login to your Trello account.
2. Go here: [https://trello.com/app-key](https://trello.com/app-key)
3. Copy your **Personal Key** to be used in Relyance.
4. Click on the Token link to generate a token for your Trello account.
5. Click **Allow**.
6. Copy the newly created **Token** to be used in Relyance.

![Trello-3.png](https://assets.relyanceuat.xyz/images/docs/10482715697037/10483035804941.png)

![Trello-4.png](https://assets.relyanceuat.xyz/images/docs/10482715697037/10486568614541.png)

![Trello-5.png](https://assets.relyanceuat.xyz/images/docs/10482715697037/10486671497613.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 **Trello** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **Personal Key** and **Token** into their respective fields.

![Trello-1.png](https://assets.relyanceuat.xyz/images/docs/10482715697037/10482677989517.png)

The **Authentication** step asks for:

- **Personal Key**: required; held as a secret.
- **Token**: required; held as a secret.

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

![Trello-2.png](https://assets.relyanceuat.xyz/images/docs/10482715697037/10482662470413.png)

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

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

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