- Added internal/vault/client.go for creating a Vault client with configuration settings. - Introduced internal/vault/errors.go to classify Vault API errors for better UI handling. - Created internal/vault/kv.go to manage KV secrets, including listing, reading, writing, and deleting operations. - Implemented internal/vault/mounts.go to list and describe secret engine mounts. - Developed internal/vault/service.go to provide a unified entry point for Vault operations. - Added internal/vault/kv_test.go for comprehensive testing of KV operations. - Introduced internal/ui/toast.go for transient notifications in the UI. - Added renovate.json for dependency management and updates.
33 lines
834 B
Go
33 lines
834 B
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/vault/api"
|
|
)
|
|
|
|
func init() { register(jwtMethod{}) }
|
|
|
|
type jwtMethod struct{}
|
|
|
|
func (jwtMethod) Name() string { return "jwt" }
|
|
func (jwtMethod) DisplayName() string { return "JWT" }
|
|
func (jwtMethod) DefaultMount() string { return "jwt" }
|
|
|
|
func (jwtMethod) Fields() []Field {
|
|
return []Field{
|
|
{Name: "role", Label: "Role", Kind: FieldText},
|
|
{Name: "jwt", Label: "JWT", Kind: FieldSecret, Required: true,
|
|
EnvFallback: []string{"VAULT_AUTH_JWT"}},
|
|
}
|
|
}
|
|
|
|
func (jwtMethod) Login(ctx context.Context, c *api.Client, req Request) (*api.Secret, error) {
|
|
mount := mountOf(req, "jwt")
|
|
data := map[string]interface{}{"jwt": req.Creds.Get("jwt")}
|
|
if role := req.Creds.Get("role"); role != "" {
|
|
data["role"] = role
|
|
}
|
|
return loginWrite(ctx, c, mount, "login", data)
|
|
}
|