forked from TrueCloudLab/certificates
Make sure to define the KeyID from the token if available.
This commit is contained in:
parent
014d2c7ccd
commit
e841a86b48
1 changed files with 3 additions and 2 deletions
|
@ -209,8 +209,9 @@ func (p *JWK) AuthorizeSSHSign(ctx context.Context, token string) ([]SignOption,
|
|||
if !opts.ValidBefore.IsZero() {
|
||||
signOptions = append(signOptions, sshCertificateValidBeforeModifier(opts.ValidBefore.RelativeTime(t).Unix()))
|
||||
}
|
||||
// Make sure to define the the KeyID
|
||||
if opts.KeyID == "" {
|
||||
if opts.KeyID != "" {
|
||||
signOptions = append(signOptions, sshCertificateKeyIDModifier(opts.KeyID))
|
||||
} else {
|
||||
signOptions = append(signOptions, sshCertificateKeyIDModifier(claims.Subject))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue