Puppet Class: kickstack::database

Inherits:
kickstack
Defined in:
manifests/database.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'manifests/database.pp', line 1

class kickstack::database inherits kickstack {

  case $database {
    'mysql': {
      $mysql_service = 'mysql'
      ensure_resource('class',
                      'mysql::server',
                      { config_hash => {
                        'root_password' => "$mysql_root_password",
                        'bind_address'  => "0.0.0.0"
                      }})
      ensure_resource('file',
                      '/etc/mysql/conf.d/skip-name-resolve.cnf',
                      { source => "puppet:///modules/kickstack/mysql/skip-name-resolve.cnf",
                      })
    }
    'postgresql': {
      ensure_resource('class',
                      'postgresql::server',
                      { config_hash => {
                        'ip_mask_deny_postgres_user' => '0.0.0.0/32',
                        'ip_mask_allow_all_users'    => '0.0.0.0/0',
                        'listen_addresses'           => '*',
                        'postgres_password'          => "$postgres_password"}})
    }
  }

}