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

  $x509      = hiera('x509')
  $key       = $x509['commercial_key']

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