mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-03 23:15:28 +00:00
Return BadRequest when validating sign options.
This commit is contained in:
parent
bb26799583
commit
031d4d7000
@ -173,7 +173,7 @@ func (a *Authority) SignSSH(ctx context.Context, key ssh.PublicKey, opts provisi
|
|||||||
// validate the given SSHOptions
|
// validate the given SSHOptions
|
||||||
case provisioner.SSHCertOptionsValidator:
|
case provisioner.SSHCertOptionsValidator:
|
||||||
if err := o.Valid(opts); err != nil {
|
if err := o.Valid(opts); err != nil {
|
||||||
return nil, errs.ForbiddenErr(err, "error validating ssh certificate options")
|
return nil, errs.BadRequestErr(err, "error validating ssh certificate options")
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user