Dagger
Search

onepassword

No long description provided.

Installation

dagger install github.com/replicatedhq/daggerverse/onepassword@6d311725877cf3d893f6fdbe6d50f0c1a42978f9

Entrypoint

Return Type
Onepassword
Example
func (m *myModule) example() *Onepassword  {
	return dag.
			Onepassword()
}

Types

Onepassword 🔗

findSecret() 🔗

Returns the value of a secret from the specificed vault, with the specified name and field.

Return Type
Secret !
Arguments
NameTypeDefault ValueDescription
serviceAccountSecret !-1password service account
vaultNameString !-Name of the vault to search
itemNameString !-Name of the item to find
fieldNameString !-Name of the field to find
Example
func (m *myModule) example(serviceAccount *Secret, vaultName string, itemName string, fieldName string) *Secret  {
	return dag.
			Onepassword().
			FindSecret(serviceAccount, vaultName, itemName, fieldName)
}

putSecret() 🔗

Set the value of a secret in the specified vault, with the specified name and field.

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
serviceAccountSecret !-1password service account
vaultNameString !-Name of the vault to search
itemNameString !-Name of the item to find
fieldNameString !-Name of the field to find
valueString !-Value to set
Example
func (m *myModule) example(ctx context.Context, serviceAccount *Secret, vaultName string, itemName string, fieldName string, value string)   {
	return dag.
			Onepassword().
			PutSecret(ctx, serviceAccount, vaultName, itemName, fieldName, value)
}