2019-10-15 20:58:50 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/acl"
|
2019-10-25 15:06:16 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2019-10-15 20:58:50 +00:00
|
|
|
)
|
|
|
|
|
2019-10-25 15:06:16 +00:00
|
|
|
// EnterpriseACLResolverDelegate stub
|
|
|
|
type EnterpriseACLResolverDelegate interface{}
|
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
func (s *Server) replicationEnterpriseMeta() *structs.EnterpriseMeta {
|
|
|
|
return structs.ReplicationEnterpriseMeta()
|
|
|
|
}
|
2019-10-28 17:49:57 +00:00
|
|
|
|
2019-10-15 20:58:50 +00:00
|
|
|
func newEnterpriseACLConfig(*log.Logger) *acl.EnterpriseACLConfig {
|
|
|
|
return nil
|
|
|
|
}
|
2019-10-25 15:06:16 +00:00
|
|
|
|
|
|
|
func (r *ACLResolver) resolveEnterpriseDefaultsForIdentity(identity structs.ACLIdentity) (acl.Authorizer, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|