2023-10-20 11:40:43 -04:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
2023-10-06 09:52:50 -04:00
|
|
|
//go:build !enterprise
|
|
|
|
|
|
|
|
|
|
package command
|
|
|
|
|
|
|
|
|
|
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
|
|
|
|
|
|
|
|
|
|
import (
|
2023-12-04 14:05:02 -05:00
|
|
|
"github.com/hashicorp/cli"
|
2023-10-06 09:52:50 -04:00
|
|
|
"github.com/hashicorp/vault/command/server"
|
|
|
|
|
"github.com/hashicorp/vault/vault"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func entInitCommands(ui, serverCmdUi cli.Ui, runOpts *RunOptions, commands map[string]cli.CommandFactory) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func entAdjustCoreConfig(config *server.Config, coreConfig *vault.CoreConfig) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func entCheckStorageType(coreConfig *vault.CoreConfig) bool {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func entGetFIPSInfoKey() string {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
2024-02-27 16:24:06 -05:00
|
|
|
|
2024-10-04 13:48:16 -04:00
|
|
|
func entCheckRequestLimiter(_cmd *ServerCommand, _config *server.Config) {
|
2024-02-27 16:24:06 -05:00
|
|
|
}
|
2024-06-18 11:17:40 -04:00
|
|
|
|
|
|
|
|
func entExtendAddonHandlers(handlers *vaultHandlers) {}
|