2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2021-10-13 14:18:16 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/serf/serf"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/acl"
|
2021-12-03 20:36:28 +00:00
|
|
|
"github.com/hashicorp/consul/api"
|
2021-10-13 14:18:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func serfMemberFillAuthzContext(m *serf.Member, ctx *acl.AuthorizerContext) {
|
|
|
|
// no-op
|
|
|
|
}
|
2021-12-03 20:36:28 +00:00
|
|
|
|
|
|
|
func agentServiceFillAuthzContext(s *api.AgentService, ctx *acl.AuthorizerContext) {
|
|
|
|
// no-op
|
|
|
|
}
|