Skip to content
Snippets Groups Projects
postgres.pp 932 B
Newer Older
  • Learn to ignore specific revisions
  • Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
    # comment 
    class egg::postgres () {
    
      package { ['postgresql', 'postgresql-contrib']:
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        ensure => 'installed',
      }
    
      class { 'postgresql::server':
        pg_hba_conf_defaults => false,
      }
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      postgresql::server::db { 'nta-digital_nodejs':
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        user     => 'nilpa76',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        encoding => 'UTF8',
        locale   => 'en_US.UTF-8',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      }
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
    
      postgresql::server::pg_hba_rule { 'allow local access as postgres user':
        type        => 'local',
        database    => 'all',
    
        user        => 'all',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        auth_method => 'trust',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      }
    
      postgresql::server::pg_hba_rule { 'allow localhost access':
        type        => 'host',
        database    => 'all',
        user        => 'all',
        address     => '127.0.0.1/32',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        auth_method => 'trust',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      }
    
      postgresql::server::pg_hba_rule { 'allow ipv6 localhost access':
        type        => 'host',
        database    => 'all',
        user        => 'all',
        address     => '::1/128',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        auth_method => 'trust',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      }
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
    }