Change default intermediate issuer expiry from 5y to 3y

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 00:52:01 -07:00
parent 0f1d58a9b8
commit bb09d04997
2 changed files with 2 additions and 2 deletions

View File

@@ -498,7 +498,7 @@ func (e *CAEngine) handleCreateIssuer(ctx context.Context, req *engine.Request)
keySize = int(v)
}
expiry := "43800h" // 5 years default
expiry := "26280h" // 3 years default
if v, ok := req.Data["expiry"].(string); ok && v != "" {
expiry = v
}