-
Notifications
You must be signed in to change notification settings - Fork 448
/
step_ca.pp
67 lines (63 loc) · 2.23 KB
/
step_ca.pp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# step_ca package configuration
class step_ca(
$version = false,
) {
if !$version {
fail("class ${name}: version cannot be empty")
}
$pkg = "step_${version}_linux_amd64.tar.gz"
$download_url = "https://github.com/smallstep/certificates/releases/download/v${version}/step-certificates_${version}_linux_amd64.tar.gz"
$step_ca_exec = '/opt/smallstep/bin/step-ca'
exec {
'download/update smallstep':
command => "/usr/bin/curl --fail -o /tmp/${pkg} ${download_url} && /bin/tar -xzvf /tmp/${pkg} -C /opt",
unless => "/usr/bin/which ${step_exec} && ${step_exec} version | grep ${version}",
user => 'step',
require => File['/opt/smallstep'];
}
file {
'/usr/local/lib/step/.step':
ensure => directory,
mode => '0755',
owner => 'step';
'/usr/local/lib/step/.step/secrets':
ensure => directory,
mode => '0644',
owner => 'step';
'/usr/local/lib/step/.step/secrets/root_ca.crt': # Get this from Hiera.
ensure => file,
mode => '0644',
owner => 'step';
'/usr/local/lib/step/.step/secrets/intermediate_ca.crt': # Get this from Hiera.
ensure => file,
mode => '0644',
owner => 'step';
'/usr/local/lib/step/.step/secrets/intermediate_ca_key': # Get this from Hiera.
ensure => file,
mode => '0644',
owner => 'step';
'/usr/local/lib/step/.step/secrets/intermediate_pass': # Get this from Hiera.
ensure => file,
mode => '0644',
owner => 'step';
'/usr/local/lib/step/.step/config':
ensure => directory,
mode => '0755',
owner => 'step';
'/usr/local/lib/step/.step/config/ca.json': # Fill from template in repo.
ensure => file,
content => template('ca.json.erb'),
mode => '0755',
owner => 'step';
'/usr/local/lib/step/.step/config/ca.json': # Fill from template in repo.
ensure => file,
content => template('defaults.json.erb'),
mode => '0755',
owner => 'step';
}
service { $name:
ensure => running,
start => "${step_ca_exec} /usr/local/lib/step/.step/config/ca.json --password-file /usr/local/lib/step/.step/secrets/intermediate_pass",
provider => 'systemd',
}
}