Slab
Slab is a online knowledge base. It integrates with everything else, including spreadsheets, slide decks, flowcharts, task managers, and much more.
In order to integrate Slab with Relyance AI you will need an Account Token.
In Slab:
- Login to your Slab account.
- Click on your profile icon in the top right-hand navigation bar.
- Click Settings.
- On the settings page, click Developer in the left-hand navigation.
- On the Developer page, in the API section, click Reveal token.
- Copy the Account 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 Slab integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the Account Token into its respective field.

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

- Congratulations, you are now connected to Slab.
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" "slab" {
vendor = "slab"
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 = {
account_token = var.slab_account_token
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}