summaryrefslogtreecommitdiff
path: root/puppet/modules/site_openvpn/manifests/dh_key.pp
blob: 13cc0f5b677d4b74ae20d7c23db82eb04165caad (plain)
1
2
3
4
5
6
7
8
9
10
class site_openvpn::dh_key {

  $x509_config      = hiera('x509')

  file { '/etc/openvpn/keys/dh.pem':
    content => $x509_config['dh'],
    mode    => '0644',
  }

}