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

  include ::site_config::params

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

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