aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql/manifests/tagged.pp
blob: 56cdc0333ba72f7ff80cede189e0e37ebe0c096b (plain)
1
2
3
4
5
6
7
define postgresql::tagged() {
    # TODO add a system of tag so we can declare database on more than one
    # server
    Postgresql::User <<| tag == $name |>>
    Postgresql::Database <<| tag == $name |>>
    Postgresql::Db_and_user <<| tag == $name |>>
}