Puppet Class: taiga::back::database
- Defined in:
- manifests/back/database.pp
Summary
Configure Taiga back databaseOverview
4 5 6 7 8 9 10 11 12 13 14 |
# File 'manifests/back/database.pp', line 4
class taiga::back::database {
assert_private()
include postgresql::server
postgresql::server::db { $taiga::back::db_name:
user => $taiga::back::db_user,
owner => $taiga::back::db_user,
password => postgresql::postgresql_password($taiga::back::db_user, $taiga::back::db_password),
}
}
|