vault/builtin/logical/pki/backend_oss.go
Vault Automation 44ced707f9
Add PkiCertificateCountSystemView to the PKI backend's SystemView (#9573) (#9617)
Add PkiCertificateCountSystemView to the PKI backend's SystemView.

Co-authored-by: Victor Rodriguez <vrizo@hashicorp.com>
2025-09-24 18:23:22 +00:00

29 lines
580 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build !enterprise
package pki
import (
"context"
"github.com/hashicorp/vault/sdk/logical"
)
type entBackend struct{}
func (b *backend) initializeEnt(_ *storageContext, _ *logical.InitializationRequest) error {
return nil
}
func (b *backend) invalidateEnt(_ context.Context, _ string) {}
func (b *backend) periodicFuncEnt(_ *storageContext, _ *logical.Request) error {
return nil
}
func (b *backend) cleanupEnt(_ *storageContext) {}
func (b *backend) SetupEnt(conf *logical.BackendConfig) {}