-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add machine_cert profile for client certificates for quod
This creates the file the same way as the apps_lib profile does, except as a discrete profile. We then include it in role::quod_prod to enable client certificates with reverse proxies there.
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Copyright (c) 2024 The Regents of the University of Michigan. | ||
# All Rights Reserved. Licensed according to the terms of the Revised | ||
# BSD License. See LICENSE.txt for details. | ||
|
||
# nebula::profile::machine_cert | ||
# | ||
# Manage a combined cert + key pem file to use as a client certificate. | ||
# | ||
# Take the puppet-issued certificate and combine into conventional Debian | ||
# directory (/etc/ssl/private), using machine name the filename base and .pem. | ||
# | ||
# @example | ||
# include nebula::profile::machine_cert | ||
class nebula::profile::machine_cert () { | ||
$certname = $trusted['certname']; | ||
$client_cert = "/etc/ssl/private/${certname}.pem"; | ||
|
||
concat { $client_cert: | ||
ensure => 'present', | ||
mode => '0600', | ||
owner => 'root', | ||
} | ||
|
||
concat::fragment { 'client cert': | ||
target => $client_cert, | ||
source => "/etc/puppetlabs/puppet/ssl/certs/${certname}.pem", | ||
order => 1 | ||
} | ||
|
||
concat::fragment { 'client key': | ||
target => $client_cert, | ||
source => "/etc/puppetlabs/puppet/ssl/private_keys/${certname}.pem", | ||
order => 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters