Skip to content

Commit

Permalink
PKI - Allow performance secondaries to generate and store certificate…
Browse files Browse the repository at this point in the history
…s locally to them (hashicorp#13759)

* PKI - Allow performance secondaries to generate and store certificates locally to them

* changelog

Co-authored-by: divyapola5 <divya@hashicorp.com>
  • Loading branch information
2 people authored and Artem Alexandrov committed Feb 4, 2022
1 parent 10a2be4 commit 75a5253
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builtin/logical/pki/path_issue_sign.go
Expand Up @@ -189,7 +189,8 @@ func (b *backend) pathSignVerbatim(ctx context.Context, req *logical.Request, da

func (b *backend) pathIssueSignCert(ctx context.Context, req *logical.Request, data *framework.FieldData, role *roleEntry, useCSR, useCSRValues bool) (*logical.Response, error) {
// If storing the certificate and on a performance standby, forward this request on to the primary
if !role.NoStore && b.System().ReplicationState().HasState(consts.ReplicationPerformanceStandby|consts.ReplicationPerformanceSecondary) {
// Allow performance secondaries to generate and store certificates locally to them.
if !role.NoStore && b.System().ReplicationState().HasState(consts.ReplicationPerformanceStandby) {
return nil, logical.ErrReadOnly
}

Expand Down
3 changes: 3 additions & 0 deletions changelog/13759.txt
@@ -0,0 +1,3 @@
```release-note:bug
secrets/pki: Fix regression causing performance secondaries to forward certificate generation to the primary.
```

0 comments on commit 75a5253

Please sign in to comment.