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'