mirror of https://github.com/hashicorp/consul
19 lines
430 B
Go
19 lines
430 B
Go
![]() |
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: MPL-2.0
|
||
|
|
||
![]() |
//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()
|
||
![]() |
}
|