Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lesuisse/vault-gpg-plugin
"Transit like" secret backend plugin for PGP/GPG in Hashicorp Vault
https://github.com/lesuisse/vault-gpg-plugin
gpg hashicorp-vault pgp plugin vault
Last synced: 19 days ago
JSON representation
"Transit like" secret backend plugin for PGP/GPG in Hashicorp Vault
- Host: GitHub
- URL: https://github.com/lesuisse/vault-gpg-plugin
- Owner: LeSuisse
- License: mit
- Created: 2017-08-09T19:57:08.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-10-08T07:31:26.000Z (about 1 month ago)
- Last Synced: 2024-10-08T13:19:13.545Z (about 1 month ago)
- Topics: gpg, hashicorp-vault, pgp, plugin, vault
- Language: Go
- Homepage:
- Size: 564 KB
- Stars: 89
- Watchers: 8
- Forks: 20
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Vault Plugin: GPG Secret Backend [![Build Status](https://github.com/LeSuisse/vault-gpg-plugin/workflows/CI/badge.svg)](https://github.com/LeSuisse/vault-gpg-plugin/actions?query=workflow%3ACI) [![Code coverage](https://codecov.io/gh/LeSuisse/vault-gpg-plugin/branch/master/graph/badge.svg)](https://codecov.io/gh/LeSuisse/vault-gpg-plugin)
This is a standalone plugin for [HashiCorp Vault](https://www.github.com/hashicorp/vault).
This plugin handles GPG operations on data-in-transit in a similar fashion to what the
[transit secret backend](https://www.vaultproject.io/docs/secrets/transit) proposes.
Data sent to the backend are not stored.As of today, the backend does not support encrypting data.
This backend has similar use cases with the [transit secret backend](https://www.vaultproject.io/docs/secrets/transit)
and the latter should be preferred if you do not need to interact with existing tools that are only GPG-aware.## Usage & setup
This is a [Vault plugin](https://www.vaultproject.io/docs/internals/plugins.html), you need to have a working installation
of Vault to use it.To learn how to use plugins with Vault, see the [documentation on plugin backends](https://www.vaultproject.io/docs/plugin)
on the official Vault website. You can download and decompress the pre-compiled plugin binary for your architecture
from the [latest release on GitHub](https://github.com/LeSuisse/vault-gpg-plugin/releases). SHA256 checksum for the
pre-compiled plugin binary is also provided in the archive so it can be registered to your Vault plugin catalog.All archives available from the [release tab on GitHub](https://github.com/LeSuisse/vault-gpg-plugin/releases).
All archives are signed using [Cosign](https://docs.sigstore.dev/cosign/verify/):```
$ cosign verify-blob --bundle .bundle \
--certificate-oidc-issuer='https://token.actions.githubusercontent.com' \
--certificate-identity-regexp='https://github.com/LeSuisse/vault-gpg-plugin/\.github/workflows/Release\.yml'
```Once mounted in Vault, this plugin exposes [this HTTP API](docs/http-api.md).