mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-26 09:01:13 +02:00
Add PKI issuer config fields to enable check disablement parameters. Add the following new configuration fields for issuers: * allow_disable_critical_extension_checks * allow_disable_path_length_checks * allow_disable_name_checks * allow_disable_name_constraint_checks
22 lines
660 B
Go
22 lines
660 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !enterprise
|
|
|
|
package pki
|
|
|
|
import (
|
|
"github.com/hashicorp/vault/builtin/logical/pki/issuing"
|
|
"github.com/hashicorp/vault/sdk/framework"
|
|
)
|
|
|
|
//go:generate go run github.com/hashicorp/vault/tools/stubmaker
|
|
|
|
func addEntPathIssuerFields(fields map[string]*framework.FieldSchema) {}
|
|
func addEntPathIssuerResponseFields(fields map[string]*framework.FieldSchema) {}
|
|
func setEntIssuerData(data map[string]any, issuer *issuing.IssuerEntry) {}
|
|
|
|
func updateEntIssuerFields(issuer *issuing.IssuerEntry, data *framework.FieldData, ignoreNotPresent bool) bool {
|
|
return false
|
|
}
|