mirror of
https://github.com/status-im/consul.git
synced 2025-02-10 12:46:32 +00:00
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)
|