26 lines
635 B
Go
26 lines
635 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package state
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/acl"
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
func getIntentionPrecedenceMatchServiceNames(serviceName string, entMeta *acl.EnterpriseMeta) []structs.ServiceName {
|
|
if serviceName == structs.WildcardSpecifier {
|
|
return []structs.ServiceName{
|
|
structs.NewServiceName(structs.WildcardSpecifier, entMeta),
|
|
}
|
|
}
|
|
|
|
return []structs.ServiceName{
|
|
structs.NewServiceName(serviceName, entMeta),
|
|
structs.NewServiceName(structs.WildcardSpecifier, entMeta),
|
|
}
|
|
}
|