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

  $x509      = hiera('x509')
  $cert      = $x509['cert']

  x509::cert { $site_config::params::cert_name:
    content => $cert
  }

}