Live Workshop: Integrate Google SecOps with Bindplane - Join Us on January 29th at 11 AM ET!Sign Up Now

PostgreSQL

Bindplane Postgres Helm Configuration

When operating Bindplane in a distributed architecture, a shared PostgreSQL instance is required.

Basic Example

This example will configure Bindplane to connect to the host postgres.mycorp.net on port 5432.

yaml
1backend:
2  type: postgres
3  postgres:
4    host: 'postgres.mycorp.net'
5    port: 5432
6    database: 'bindplane'
7    username: 'bindplane'
8    password: 'bindplane-pass'