6a29636155
Adds connection-settings (for remote DB support) when creating DB resources. Connection-settings allows a hash of options that can be used when connecting the a remote DB (such as PGHOST, PGPORT, PGPASSWORD PGSSLKEY) and a special option DBVERSION indicating the version of the remote database. Including - Puppet updates - Documentation updates - RSpec unit test updates - RSpec acceptance test updates - Some test coverage for connection-settings - Working acceptance test... Basic vagrant setup: * Two boxes, server and client * Runs puppet code to on server to setup a postgres server that allows all connections and md5 connections, creates db puppet to look at * Runs puppet code on client to make a server that a psql command can be run against puppet db on other server * Does some fancy stuff to get the fact of the IP from the first server to connect to - Backwards compatible, with deprecation warnings around old parameters
26 lines
No EOL
738 B
Puppet
26 lines
No EOL
738 B
Puppet
# This resource wraps the grant resource to manage table grants specifically.
|
|
# See README.md for more details.
|
|
define postgresql::server::table_grant(
|
|
$privilege,
|
|
$table,
|
|
$db,
|
|
$role,
|
|
$port = undef,
|
|
$psql_db = undef,
|
|
$psql_user = undef,
|
|
$connect_settings = undef,
|
|
$onlyif_exists = false,
|
|
) {
|
|
postgresql::server::grant { "table:${name}":
|
|
role => $role,
|
|
db => $db,
|
|
port => $port,
|
|
privilege => $privilege,
|
|
object_type => 'TABLE',
|
|
object_name => $table,
|
|
psql_db => $psql_db,
|
|
psql_user => $psql_user,
|
|
onlyif_exists => $onlyif_exists,
|
|
connect_settings => $connect_settings,
|
|
}
|
|
} |