2020-02-04 20:58:56 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package consul
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Consul-enterprise only
|
|
|
|
func (s *Server) validateEnterpriseToken(identity structs.ACLIdentity) error {
|
|
|
|
return nil
|
|
|
|
}
|
2020-04-14 15:45:39 +00:00
|
|
|
|
|
|
|
// aclBootstrapAllowed returns whether the server's configuration would allow ACL bootstrapping
|
|
|
|
//
|
|
|
|
// This endpoint does not take into account whether bootstrapping has been performed previously
|
|
|
|
// nor the bootstrap reset file.
|
|
|
|
func (s *Server) aclBootstrapAllowed() error {
|
|
|
|
return nil
|
|
|
|
}
|