aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql/manifests/remote_db_and_user.pp
blob: bb331304896e39eaa76271be22712a0c5d555bbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
define postgresql::remote_db_and_user($password,
                                      $description = '',
                                      $tag = 'default',
                                      $callback_notify = '') {

    @@postgresql::db_and_user { $name:
        callback_notify => $callback_notify,
        tag             => $tag,
        description     => $description,
        password        => $password,
    }

    # fetch the exported ressources that should have been exported
    # once the db was created, and trigger a notify to the object
    # passed as callback_notify
    Postgresql::Database_callback <<| tag == $name |>>
}