templates/geo_sql_template.rb [7:18]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
pgbouncer['enable'] = true
pgbouncer['auth_type'] = 'trust'
pgbouncer['admin_users'] = %w[pgbouncer gitlab-consul]

pgbouncer['users'] = {
  'gitlab-consul': {
    password: __CONSUL_PASSWORD__
  },
  pgbouncer: {
    password: __PGBOUNCER_PASSWORD__
  }
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



templates/primary_sql_template.rb [50:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
pgbouncer['enable'] = true
pgbouncer['auth_type'] = 'trust'
pgbouncer['admin_users'] = %w[pgbouncer gitlab-consul]
pgbouncer['users'] = {
  'gitlab-consul': {
    password: __CONSUL_PASSWORD__
  },
  pgbouncer: {
    password: __PGBOUNCER_PASSWORD__
  }
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



