app/ssh: Configure sshd trusted user CA keys

Configuring the system-wide trusted user CA key list for *sshd(8)*.
This commit is contained in:
2024-02-02 07:14:07 -06:00
parent afd65ea9b8
commit b7f5d4a910
12 changed files with 49 additions and 0 deletions

11
env/prod/ssh.cue vendored Normal file
View File

@@ -0,0 +1,11 @@
package prod
import (
"du5t1n.me/cfg/app/ssh/schema"
)
ssh: schema.#Ssh & {
trusted_user_ca_keys: """
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINyi18IfxAf9wLnyffnMrThYpqxVwu0rsuiLoqW6rcwF sshca.pyrocufflink.blue
"""
}