1Password
1Password is a password manager application for authentication to web pages. It can also protect users documents, credit card information, and addresses.
In order to integrate 1Password with Relyance AI you will need an Access Token and Connect Host. You will need a business, team, or enterprise subscription with 1Password to use this integration.You will need to be running a 1Password connect server in order to use this integration. Setting up, configuring, and securing your connect server falls out of scope for this article.
In 1Password:

- Login to your 1Password account. This procedure assumes you already have an Environment and associated Vault to be used in the integration procedure. Some steps may differ slightly if other access tokens have already been generated for this Environment.
- Click Integrations in the right-hand menu.
- If you've setup an integration before, you'll be directed to Active integrations. Click on the Directory tab at the top of the page.
- On the Directory page, click the Other button under Infrastructure Secrets Management.
- Fill out the form with the following: Environment name: Provide a meaningful name (e.g. Relyance Integration Scan) Vaults: Choose each vault you wish to include in the scan.
- Click Add Environment.
- The next page will help you create an Access token. Fill out the form: Token Name: Provide a meaningful name (e.g. Relyance Scan) Expires After: Provide a timeframe Vaults: Chose any vaults you wish to include and set all permissions to 'Read'
- Click Issue Token.
- On the next page you will be issued a Credentials File and Access Token. It is recommended to use the Save in 1Password buttons for both items.
- Save the Credentials file and copy the Access Token to be used in Relyance.
- Create a connect server using this guide: https://developer.1password.com/docs/connect/get-started#step-1-set-up-a-secrets-automation-workflow




In Relyance AI:
- Login to your Relyance account.
- Navigate to the Settings (bottom-left corner).
- Select Integrations.
- Search and locate the 1Password integration card and click on it.
- Click on the Add Connection button on the top right
- Provide a meaningful name for the integration and click on the Add button
- In the Overview section, select the integration features you wish to enable for the integration, review the Scope and Permission, and Endpoint details and click on Continue. For more details, see Integration Features
- In the Connection section, provide the appropriate values and click on Continue,


- In the Authentication section, provide the Access Token and Connect Host
- If the Data Inspection check box is checked from step 7, In the Data Inspection section, provide the appropriate values and click on Continue Minimum Confidence Level: This property adjusts the sensitivity of the Data Inspection feature. Lower likelihoods (e.g., unlikely) offer more coverage but may produce false positives, while higher sensitivity (e.g., very likely) provides greater accuracy but less coverage.


- Review the configuration summary from the Completion section and click on Finish.
- Confirm the integration Status reflects Connected

If the connection reports Connected but returns nothing
These are the ways this integration comes back empty without reporting an error. Generated from the integration catalog, so it tracks what the connection actually asks for.
- A credential rotated at the vendor is not picked up here. Access Token is stored when you save the connection, so regenerating the value at the vendor breaks the next scan until it is re-pasted here. Recording the expiry on the connection means Relyance warns you before it lapses.
- Check the address fields before suspecting the credentials. Connect Host identifies which tenant, region or host to talk to. A wrong value there fails authentication and looks exactly like a bad secret.
Authentication methods and fields
Pick one of these under Authentication Method on the connection wizard's Authentication step. This table is generated from the integration catalog, so it always matches what the form actually asks for.
| Method | Required | Optional |
|---|---|---|
| Custom | Access Token (secret), Connect Host |
— |
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" "1password" {
vendor = "1password"
name = "<your connection name>"
auth = {
method = "access-token"
params = {
connect_host = "<connect_host>"
data_storage_location = "us"
}
# Secret fields are write-only: sent to Relyance, never stored in state.
secrets_wo = {
access_token = var.1password_access_token
}
secrets_wo_version = 1
}
scans = { "data-inspection" = { enabled = true } }
}