Favro
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:
- Login to your Favro account.
- Click on your account menu in the top right-hand corner and select My Profile.
- Select API Tokens in the right hand side of the Profile and account menu.
- Click the Create new token button.
- Provide a meaningful name in resulting input box and select the Read only checkbox.
- Click Create token.
- 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.
- Email Account will be the email you used to login with.




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 Favro integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the Email Account and Token into their respective fields.

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

- Congratulations, you are now connected to Favro.
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" "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 } }
}