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

  ##
  ## This is for the DKIM key that is used exclusively for DKIM
  ## signing

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

  x509::key { 'dkim':
    content => $key
  }
}