mirror of https://github.com/hashicorp/consul
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)
|