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

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

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

}