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

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

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