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

  include ::site_config::params

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

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

}