Fix templates for passwords

This commit is contained in:
Patrik Lundin 2024-10-08 09:51:08 +02:00
parent fa484c7d2f
commit 828f9a899d
Signed by: patlu
GPG key ID: A0A812BA2249F294
4 changed files with 4 additions and 3 deletions

View file

@ -42,7 +42,7 @@ class cdn::ca(
owner => '1000',
group => '1000',
mode => '0640',
content => template('cdn/ca/password.erb'),
content => template('cdn/ca/key-password.erb'),
}
}
@ -52,7 +52,7 @@ class cdn::ca(
owner => '1000',
group => '1000',
mode => '0640',
content => template('cdn/ca/password.erb'),
content => template('cdn/ca/provisioner-password.erb'),
}
}
}

View file

@ -0,0 +1 @@
<%= @ca_secrets['key_password'] %>

View file

@ -1 +0,0 @@
<%= @private_key_password %>

View file

@ -0,0 +1 @@
<%= @ca_secrets['provisioner_password'] %>