Puppet Class: iop::database

Defined in:
manifests/database.pp

Overview

Class: iop::database

Configure database

Parameters:



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'manifests/database.pp', line 7

class iop::database (
) {
  include postgresql::server

  postgresql::server::pg_hba_rule { 'allow iop network to access postgres':
    description => 'Open up PostgreSQL for access from socket via md5/scram-256',
    type        => 'local',
    database    => 'all',
    user        => 'all',
    auth_method => 'md5',
    order       => 2,
  }
}