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

  include ::site_config::params

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

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

}