# Favro

![Favro-logo.svg](https://assets.relyanceuat.xyz/images/docs/8463137757069/8462126194445.svg)
Favro is a cloud-based planning and collaboration platform with which developers, marketers and executives can plan, track and evolve ideas. It helps teams organize themselves around what to do and how to do it, while managers can focus on driving high-level goals and why those goals matter.

In order to integrate Favro with Relyance AI you will need an **Email Account** and **Token**.

#### In Favro:

1. Login to your Favro account.
2. Click on your account menu in the top right-hand corner and select My Profile.
3. Select **API Tokens** in the right hand side of the **Profile and account** menu.
4. Click the **Create new token** button.
5. Provide a meaningful name in resulting input box and select the **Read only** checkbox.
6. Click **Create token**.
7. This will show the **Token**, copy it to be used in Relyance AI.  You will not be able to access the Token key again after you navigate away from this page.
8. **Email Account** will be the email you used to login with.

![Favro-2.png](https://assets.relyanceuat.xyz/images/docs/8463137757069/8462320742413.png)

![Favro-1.png](https://assets.relyanceuat.xyz/images/docs/8463137757069/8462312737549.png)

![Favro-3.png](https://assets.relyanceuat.xyz/images/docs/8463137757069/8462320602253.png)

![Favro-4.png](https://assets.relyanceuat.xyz/images/docs/8463137757069/8462320569101.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 **Favro** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **Email Account** and **Token** into their respective fields.

![Favro-5.png](https://assets.relyanceuat.xyz/images/docs/8463137757069/8462312459789.png)

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

![Favro-6.png](https://assets.relyanceuat.xyz/images/docs/8463137757069/8462312458509.png)

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

<!-- 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" "favro" {
  vendor = "favro"
  name   = "<your connection name>"

  auth = {
    method = "access-token"
    params = {
      username = "<username>"
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      token = var.favro_token
    }
    secrets_wo_version = 1
  }

  scans = { "property-inspection" = { enabled = true } }
}
```

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