X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fbuildd_master%2Fdb_guest_access.pp;fp=modules%2Froles%2Fmanifests%2Fbuildd_master%2Fdb_guest_access.pp;h=bf77a37c24356058ccfac867027899a2a87f4dde;hb=2e652b2d93803058d3ec61a3bbe889e52d637009;hp=f2c24a4bea973801a19f1c07e8c16d0df1244a3a;hpb=11c5ee4c16d5782ce590995baabe054b969ce5a8;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/buildd_master/db_guest_access.pp b/modules/roles/manifests/buildd_master/db_guest_access.pp index f2c24a4be..bf77a37c2 100644 --- a/modules/roles/manifests/buildd_master/db_guest_access.pp +++ b/modules/roles/manifests/buildd_master/db_guest_access.pp @@ -1,22 +1,25 @@ # wanna-build guest access to DB # -# @param db_address hostname of the postgres server for this service -# @param db_port port of the postgres server for this service -# @param database list of databases to give access to -# @param address hosts to give access +# @param db_address hostname of the postgres server for this service +# @param db_port port of the postgres server for this service +# @param database list of databases to give access to +# @param address hosts to give access +# @param connection_type connection type class roles::buildd_master::db_guest_access ( String $db_address = $roles::buildd_master::params::db_address, Integer $db_port = $roles::buildd_master::params::db_port, Array[String] $database = ['wanna-build'], + Enum['local', 'host', 'hostssl'] $connection_type = 'hostssl', Optional[Variant[Stdlib::IP::Address, Array[Stdlib::IP::Address]]] $address = $base::public_addresses, ) inherits roles::buildd_master::params { @@postgres::cluster::hba_entry { "buildd_master-guest-${::fqdn}": - tag => "postgres::cluster::${db_port}::hba::${db_address}", - pg_port => $db_port, - database => $database, - user => 'guest', - address => $address, - method => 'trust', - order => '25', + tag => "postgres::cluster::${db_port}::hba::${db_address}", + pg_port => $db_port, + database => $database, + user => 'guest', + address => $address, + connection_type => $connection_type, + method => 'trust', + order => '25', } }