20 lines
491 B
Go
20 lines
491 B
Go
|
// +build !consulent
|
||
|
|
||
|
package consul
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/consul/agent/consul/authmethod"
|
||
|
"github.com/hashicorp/consul/agent/structs"
|
||
|
)
|
||
|
|
||
|
func enterpriseAuthMethodValidation(method *structs.ACLAuthMethod, validator authmethod.Validator) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func computeTargetEnterpriseMeta(
|
||
|
method *structs.ACLAuthMethod,
|
||
|
verifiedIdentity *authmethod.Identity,
|
||
|
) (*structs.EnterpriseMeta, error) {
|
||
|
return method.TargetEnterpriseMeta(verifiedIdentity.EnterpriseMeta), nil
|
||
|
}
|