Documentation ¶
Overview ¶
Package secrets contains components for accessing/modifying client secrets
Index ¶
Constants ¶
View Source
const ( ClientIDKey = "clientId" ClientSecretKey = "clientSecret" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manager ¶
type Manager interface { Create(secret *v1.Secret) (*v1.Secret, error) Get(name string, options metav1.GetOptions) (*v1.Secret, error) Delete(name string, options *metav1.DeleteOptions) error Update(secret *v1.Secret) (*v1.Secret, error) }
Manager contains operations for managing k8s secrets
type Repository ¶
type Repository interface { Create(remoteEnvironment, name, clientID, clientSecret, serviceID string) apperrors.AppError Get(remoteEnvironment, name string) (string, string, apperrors.AppError) Delete(name string) apperrors.AppError Upsert(remoteEnvironment, name, clientID, clientSecret, secretID string) apperrors.AppError }
Repository contains operations for managing client credentials
func NewRepository ¶
func NewRepository(secretsManager Manager) Repository
NewRepository creates a new secrets repository
Click to show internal directories.
Click to hide internal directories.