Add algo signer to support openssl as of recent (#12438)
"algorithm_signer": "rsa-sha2-256" to prevent /var/log/auth.log `userauth_pubkey: certificate signature algorithm ssh-rsa: signature algorithm not supported [preauth]` due to vault defaulting to ssh-rsa which is insecure
This commit is contained in:
parent
bd25ed1294
commit
364d7a9be1
|
@ -114,6 +114,7 @@ team, or configuration management tooling.
|
|||
```text
|
||||
$ vault write ssh-client-signer/roles/my-role -<<"EOH"
|
||||
{
|
||||
"algorithm_signer": "rsa-sha2-256",
|
||||
"allow_user_certificates": true,
|
||||
"allowed_users": "*",
|
||||
"allowed_extensions": "permit-pty,permit-port-forwarding",
|
||||
|
|
Loading…
Reference in New Issue