consul/agent/xds/server_ce.go
2023-08-22 09:46:03 -05:00

19 lines
431 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//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()
}