summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/x509/ca_bundle.pp
blob: 204f0a5eac25cfc7b6e04ef38a19eda8b906fead (plain)
1
2
3
4
5
6
7
8
9
10
class site_config::x509::ca_bundle {

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

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