diff --git a/vault-kv/main.go b/vault-kv/main.go index 19f1eef..6f9ac4e 100644 --- a/vault-kv/main.go +++ b/vault-kv/main.go @@ -1,9 +1,9 @@ -// Vault kv (Key-Value) secrets engine module +// Package main provides the Vault kv (Key-Value) secrets engine module // -// Uses the Vault commands (CLI) to communicate with the Vault instance. +// This module uses the Vault commands (CLI) to communicate with the Vault instance. +// The functions can be called from the dagger CLI or from one of the SDKs. // // Check the original documentation: https://developer.hashicorp.com/vault/docs/commands/ - package main import ( diff --git a/vault-kv/tests/main.go b/vault-kv/tests/main.go index 06f619c..e720dfd 100644 --- a/vault-kv/tests/main.go +++ b/vault-kv/tests/main.go @@ -1,3 +1,6 @@ +// Package main provides tests for the Vault kv (Key-Value) secrets engine module +// +// The functions can be called from the dagger CLI or from one of the SDKs. package main import (