2023-03-28 19:39:22 +01:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
2023-08-11 09:12:13 -04:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-03-28 19:39:22 +01:00
|
|
|
|
2021-11-16 12:04:01 -06:00
|
|
|
//go:build !consulent
|
2021-10-13 09:18:16 -05:00
|
|
|
|
|
|
|
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 09:18:16 -05: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
|
|
|
|
}
|