summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/x509/client_ca.pp
blob: 3e914cf573c8689ce97e0e1a09edca3fdf040c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class site_config::x509::client_ca {

  ##
  ## This is for the special CA that is used exclusively for generating
  ## client certificates by the webapp.
  ##

  $x509      = hiera('x509')
  $client_ca = $x509['client_ca_cert']

  x509::ca { $site_config::params::client_ca_name:
    content => $client_ca
  }
}