mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
21fdbbabbc
Wire up traffic permissions
15 lines
301 B
Go
15 lines
301 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package authv1alpha1
|
|
|
|
type SourceToSpiffe interface {
|
|
GetIdentityName() string
|
|
GetPartition() string
|
|
GetNamespace() string
|
|
GetPeer() string
|
|
}
|
|
|
|
var _ SourceToSpiffe = (*Source)(nil)
|
|
var _ SourceToSpiffe = (*ExcludeSource)(nil)
|