Pusher
Pusher is a web-hosted API service that makes it super-easy to add real-time data and functionality to web and mobile applications. It works as a real-time communication layer between the server and the client and maintains persistent connections at the client using WebSockets, as and when new data is added to your server.
In order to integrate Pusher with Relyance AI you will need an app_id, key, secret, and cluster info.
In Pusher:

Login to your Pusher account.
Click on a channel in the dashboard.
Click on App Keys and Create a new key and secret.

- Copy the values of app_id, key, secret and cluster fields to be used in Relyance AI.
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 Pusher integration card and click it to open its connections.
- Under Authentication Method, choose Custom.
- Paste the app_id, key, secret, and cluster info into their respective fields.

The Authentication step asks for:
- app_id: required.
- key: required; held as a secret.
- secret: required; held as a secret.
- cluster: required.
- Click Authenticate.
- At this point, you should see the following result on the Vendor Integrations page:

- Congratulations, you are now connected to Pusher.
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" "pusher" {
vendor = "pusher"
name = "<your connection name>"
auth = {
method = "app-credentials"
params = {
app_id = "<app_id>"
cluster = "<cluster>"
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
key = var.pusher_key
secret = var.pusher_secret
}
secrets_wo_version = 1
}
scans = { "property-inspection" = { enabled = true } }
}