File: pg_hba_rule.conf.epp

package info (click to toggle)
puppet-module-puppetlabs-postgresql 10.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 940 kB
  • sloc: ruby: 731; sh: 66; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%- |
  String[1]                                 $name,
  String[1]                                 $description,
  Variant[String, Integer]                  $order,
  Postgresql::Pg_hba_rule_type              $type,
  String[1]                                 $database,
  String[1]                                 $user,
  Optional[Postgresql::Pg_hba_rule_address] $address,
  String[1]                                 $auth_method,
  Optional[String]                          $auth_option,
| -%>
# Rule Name: <%= $name %>
# Description: <%= $description %>
# Order: <%= $order %>
<%= $type %>	<%= $database %>	<%= $user %>	<%= $address %>	<%= $auth_method %>	<%= $auth_option %>