secrets

package
v1.0.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 26, 2021 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Secret

type Secret struct {
	ID     string            `json:"ID"`
	Name   string            `json:"Name"`
	Labels map[string]string `json:"Tags"`
	// contains filtered or unexported fields
}

Secret hold sensitive data

func NewSecret

func NewSecret(name string, content []byte) Secret

NewSecret builds a secret

func (Secret) GetContent added in v0.1.23

func (s Secret) GetContent() []byte

GetContent returns a Secret's sensitive data

func (Secret) ToJSON

func (s Secret) ToJSON() (string, error)

ToJSON marshall a Secret into JSON string

type Service

type Service interface {
	CreateSecret(ctx context.Context, secret Secret) (string, error)
	InspectSecret(ctx context.Context, id string) (Secret, error)
	ListSecrets(ctx context.Context) ([]Secret, error)
	DeleteSecret(ctx context.Context, id string, recover bool) error
}

Service interacts with the underlying secrets backend

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL