summaryrefslogtreecommitdiff
path: root/puppet/modules/site_stunnel/manifests/clients.pp
blob: 28ed6d3cf2bc8d9dc8a3d87b47d6a52bd0e27cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
define site_stunnel::clients (
  $accept_port,
  $connect,
  $client = true,
  $cafile,
  $key,
  $cert,
  $verify     = '2',
  $pid        = $name,
  $rndfile    = '/var/lib/stunnel4/.rnd',
  $debuglevel = '4' ) {

  $couchdb_stunnel_client_defaults = {
    'cafile'     => $ca_path,
    'key'        => $key_path,
    'cert'       => $cert_path,
  }


    stunnel::service { $name:
      accept     => "127.0.0.1:${accept_port}",
      connect    => "${connect}:6984",
      client     => $client,
      cafile     => $cafile,
      key        => $key,
      cert       => $cert,
      verify     => $verify,
      pid        => "/var/run/stunnel4/${pid}.pid",
      rndfile    => $rndfile,
      debuglevel => $debuglevel
    }
  }