infisical

package module
v0.1.9 Latest Latest
Warning

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

Go to latest
Published: Jun 13, 2024 License: Apache-2.0 Imports: 18 Imported by: 37

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type APIError added in v0.1.7

type APIError = errors.APIError

type Auth

type Auth struct {
	// contains filtered or unexported fields
}

func (*Auth) AwsIamAuthLogin

func (a *Auth) AwsIamAuthLogin(identityId string) (accessToken string, err error)

func (*Auth) AzureAuthLogin

func (a *Auth) AzureAuthLogin(identityID string) (accessToken string, err error)

func (*Auth) GcpIamAuthLogin

func (a *Auth) GcpIamAuthLogin(identityID string, serviceAccountKeyFilePath string) (accessToken string, err error)

func (*Auth) GcpIdTokenAuthLogin

func (a *Auth) GcpIdTokenAuthLogin(identityID string) (accessToken string, err error)

func (*Auth) KubernetesAuthLogin

func (a *Auth) KubernetesAuthLogin(identityID string, serviceAccountTokenPath string) (accessToken string, err error)

func (*Auth) KubernetesRawServiceAccountTokenLogin added in v0.1.8

func (a *Auth) KubernetesRawServiceAccountTokenLogin(identityID string, serviceAccountToken string) (accessToken string, err error)

func (*Auth) SetAccessToken

func (a *Auth) SetAccessToken(accessToken string)

func (*Auth) UniversalAuthLogin

func (a *Auth) UniversalAuthLogin(clientID string, clientSecret string) (token string, err error)

type AuthInterface

type AuthInterface interface {
	SetAccessToken(accessToken string)
	UniversalAuthLogin(clientID string, clientSecret string) (accessToken string, err error)
	KubernetesAuthLogin(identityID string, serviceAccountTokenPath string) (accessToken string, err error)
	KubernetesRawServiceAccountTokenLogin(identityID string, serviceAccountToken string) (accessToken string, err error)
	AzureAuthLogin(identityID string) (accessToken string, err error)
	GcpIdTokenAuthLogin(identityID string) (accessToken string, err error)
	GcpIamAuthLogin(identityID string, serviceAccountKeyFilePath string) (accessToken string, err error)
	AwsIamAuthLogin(identityId string) (accessToken string, err error)
}

func NewAuth

func NewAuth(client *InfisicalClient) AuthInterface

type Config

type Config struct {
	SiteUrl   string
	UserAgent string // optional, we set this when instantiating the client in the k8s operator / cli.
}

type CreateFolderOptions added in v0.1.6

type CreateFolderOptions = api.CreateFolderV1Request

type CreateSecretOptions

type CreateSecretOptions = api.CreateSecretV3RawRequest

type DeleteFolderOptions added in v0.1.6

type DeleteFolderOptions = api.DeleteFolderV1Request

type DeleteSecretOptions

type DeleteSecretOptions = api.DeleteSecretV3RawRequest

type Folders added in v0.1.6

type Folders struct {
	// contains filtered or unexported fields
}

func (*Folders) Create added in v0.1.6

func (f *Folders) Create(options CreateFolderOptions) (models.Folder, error)

func (*Folders) Delete added in v0.1.6

func (f *Folders) Delete(options DeleteFolderOptions) (models.Folder, error)

func (*Folders) List added in v0.1.6

func (f *Folders) List(options ListFoldersOptions) ([]models.Folder, error)

func (*Folders) Update added in v0.1.6

func (f *Folders) Update(options UpdateFolderOptions) (models.Folder, error)

type FoldersInterface added in v0.1.6

type FoldersInterface interface {
	List(options ListFoldersOptions) ([]models.Folder, error)
	Update(options UpdateFolderOptions) (models.Folder, error)
	Create(options CreateFolderOptions) (models.Folder, error)
	Delete(options DeleteFolderOptions) (models.Folder, error)
}

func NewFolders added in v0.1.6

func NewFolders(client *InfisicalClient) FoldersInterface

type InfisicalClient

type InfisicalClient struct {
	// contains filtered or unexported fields
}

func (*InfisicalClient) Auth

func (c *InfisicalClient) Auth() AuthInterface

func (*InfisicalClient) Folders added in v0.1.6

func (c *InfisicalClient) Folders() FoldersInterface

func (*InfisicalClient) Secrets

func (c *InfisicalClient) Secrets() SecretsInterface

func (*InfisicalClient) UpdateConfiguration

func (c *InfisicalClient) UpdateConfiguration(config Config)

type InfisicalClientInterface

type InfisicalClientInterface interface {
	UpdateConfiguration(config Config)
	Secrets() SecretsInterface
	Folders() FoldersInterface
	Auth() AuthInterface
}

func NewInfisicalClient

func NewInfisicalClient(config Config) InfisicalClientInterface

type KubernetesAuthLoginOptions

type KubernetesAuthLoginOptions struct {
	IdentityID              string
	ServiceAccountTokenPath string
}

type ListFoldersOptions added in v0.1.6

type ListFoldersOptions = api.ListFoldersV1Request

type ListSecretsOptions

type ListSecretsOptions = api.ListSecretsV3RawRequest

type RequestError added in v0.1.7

type RequestError = errors.RequestError

type RetrieveSecretOptions

type RetrieveSecretOptions = api.RetrieveSecretV3RawRequest

type Secret

type Secret = models.Secret

type SecretImport

type SecretImport = models.SecretImport

type Secrets

type Secrets struct {
	// contains filtered or unexported fields
}

func (*Secrets) Create

func (s *Secrets) Create(options CreateSecretOptions) (models.Secret, error)

func (*Secrets) Delete

func (s *Secrets) Delete(options DeleteSecretOptions) (models.Secret, error)

func (*Secrets) List

func (s *Secrets) List(options ListSecretsOptions) ([]models.Secret, error)

func (*Secrets) Retrieve

func (s *Secrets) Retrieve(options RetrieveSecretOptions) (models.Secret, error)

func (*Secrets) Update

func (s *Secrets) Update(options UpdateSecretOptions) (models.Secret, error)

type SecretsInterface

type SecretsInterface interface {
	List(options ListSecretsOptions) ([]models.Secret, error)
	Retrieve(options RetrieveSecretOptions) (models.Secret, error)
	Update(options UpdateSecretOptions) (models.Secret, error)
	Create(options CreateSecretOptions) (models.Secret, error)
	Delete(options DeleteSecretOptions) (models.Secret, error)
}

func NewSecrets

func NewSecrets(client *InfisicalClient) SecretsInterface

type UniversalAuthLoginOptions

type UniversalAuthLoginOptions = api.UniversalAuthLoginRequest

type UpdateFolderOptions added in v0.1.6

type UpdateFolderOptions = api.UpdateFolderV1Request

type UpdateSecretOptions

type UpdateSecretOptions = api.UpdateSecretV3RawRequest

Directories

Path Synopsis
packages

Jump to

Keyboard shortcuts

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