Forge Home

pgbouncer

Deploys pgbouncer

40,576 downloads

35,313 latest version

4.6 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.3.3 (latest)
  • 0.3.2
  • 0.3.1
  • 0.3.0
  • 0.2.7
  • 0.2.6
  • 0.2.5 (deleted)
  • 0.2.4
released Mar 30th 2016
This version is compatible with:
  • , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'covermymeds-pgbouncer', '0.3.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add covermymeds-pgbouncer
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install covermymeds-pgbouncer --version 0.3.3

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

covermymeds/pgbouncer — version 0.3.3 Mar 30th 2016

pgbouncer

Overview

Installs and configures pgbouncer.

Module Description

This module installs the pgbouncer package and configures it to pool connections for postgresql databases. By default, the service uses port 6432 as this is the default port of pgbouncer.

Setup

What pgbouncer affects

  • /etc/pgbouncer/pgbouncer.ini
  • /etc/pgbouncer/userlist.txt
  • /etc/default/pgbouncer

Setup Requirements

Requires a Debian or RedHat based system. If other OS's are needed, it shouldn't be hard to extend the module.

Usage

###Classes

This module modifies the pgbouncer configuration files and replaces the main configuration file.

####Class: pgbouncer

The primary class that installs and configures pgbouncer. It also ensures the pgbouncer service is running.

####Class: pgbouncer::params

Parameters within pgbouncer:

#####databases An array of hash entries to be written to the databases section in the pbbouncer.ini

Array entry format in hieradata:

  pgbouncer::databases:
    - source_db: 'admin'
      host: 'localhost'
      dest_db: 'admin'
      auth_user: 'admin'

#####auth_list An array of hash values (user/password pairs). This array is written to /var/lib/postgresql/pgbouncer.auth

Array entry format in hieradata:

  pgbouncer::userlist:
    - user: 'admin'
      password: 'admin'

Limitations

This has only been tested on Redhat Systems. If you experience issues using it with Ubuntu, please open an issue and we will work with you to correct the problem or you can submit a PR.

Development

The module is open source and available on github. Please fork!