2023-03-28 18:39:22 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2020-05-06 18:48:04 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
2022-04-05 21:10:06 +00:00
|
|
|
memdb "github.com/hashicorp/go-memdb"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/acl"
|
2020-05-06 18:48:04 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul/authmethod"
|
2022-03-31 16:49:11 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul/state"
|
2020-05-06 18:48:04 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
)
|
|
|
|
|
2021-12-03 18:20:25 +00:00
|
|
|
func (a *ACL) tokenUpsertValidateEnterprise(token *structs.ACLToken, existing *structs.ACLToken) error {
|
|
|
|
state := a.srv.fsm.State()
|
|
|
|
return state.ACLTokenUpsertValidateEnterprise(token, existing)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *ACL) policyUpsertValidateEnterprise(policy *structs.ACLPolicy, existing *structs.ACLPolicy) error {
|
|
|
|
state := a.srv.fsm.State()
|
|
|
|
return state.ACLPolicyUpsertValidateEnterprise(policy, existing)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *ACL) roleUpsertValidateEnterprise(role *structs.ACLRole, existing *structs.ACLRole) error {
|
|
|
|
state := a.srv.fsm.State()
|
|
|
|
return state.ACLRoleUpsertValidateEnterprise(role, existing)
|
|
|
|
}
|
|
|
|
|
2020-05-06 18:48:04 +00:00
|
|
|
func enterpriseAuthMethodValidation(method *structs.ACLAuthMethod, validator authmethod.Validator) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-05 21:10:06 +00:00
|
|
|
func getTokenNamespaceDefaults(ws memdb.WatchSet, state *state.Store, entMeta *acl.EnterpriseMeta) ([]string, []string, error) {
|
2022-03-31 16:49:11 +00:00
|
|
|
return nil, nil, nil
|
|
|
|
}
|