You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/agent/xds/server_oss.go

16 lines
360 B

//go:build !consulent
// +build !consulent
package xds
import (
envoy_core_v3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
"github.com/hashicorp/consul/acl"
"github.com/hashicorp/consul/agent/structs"
)
func parseEnterpriseMeta(node *envoy_core_v3.Node) *acl.EnterpriseMeta {
return structs.DefaultEnterpriseMetaInDefaultPartition()
}