No project description provided
Project description
About
An Idem plugin to manage resources of HashiCorp’s Vault.
What is POP?
This project is built with pop, a Python-based implementation of Plugin Oriented Programming (POP). POP seeks to bring together concepts and wisdom from the history of computing in new ways to solve modern computing problems.
For more information:
Getting Started
Prerequisites
Python 3.8+
git (if installing from source, or contributing to the project)
Installation
If wanting to use idem-vault, you can do so by either installing from PyPI or from source.
Install from PyPI
pip install idem-vault
Install from source
# clone repo
git clone git@<your-project-path>/idem-vault.git
cd idem-vault
# Setup venv
python3 -m venv .venv
source .venv/bin/activate
pip install -e .
Usage
The first step is to setup the credential to Vault. Similarly to other Idem plugins, this is done via the acct tool. Create a credential.yaml file like following:
vault:
default:
address: http://127.0.0.1:8200
token: Sb6lasdfsdf3ysfMNsdfd11
Encrypt the the credential file:
acct encrypt credentials.yaml
output:
-A9ZkiCSOjWYG_lbGmmkVh4jKLFDyOFH4e4S1HNtNwI=
Add the output token and the generated fernet file path to your environment:
export ACCT_KEY="-A9ZkiCSOjWYG_lbGmmkVh4jKLFDyOFH4e4S1HNtNwI="
export ACCT_FILE=$PWD/credentials.yaml.fernet
You are ready to use idem-vault to manage your Vault resources!!!
Tests
In order to run the idem-vault tests, you need a development vault environment to be running locally.
Run the vault server with docker enabling kv_v1.
$ docker run -p 8201:8201 -e VAULT_DEV_LISTEN_ADDRESS="0.0.0.0:8201" -e VAULT_DEV_ROOT_TOKEN_ID="abcdefghijk" hashicorp/vault server -dev -dev-kv-v1
Start a second docker vault server enabling kv_v2
$ docker run -p 8200:8200 -e VAULT_DEV_LISTEN_ADDRESS="0.0.0.0:8200" -e VAULT_DEV_ROOT_TOKEN_ID="abcdefghijk" hashicorp/vault
Add the default credentials.yml to your environment.
$ export ACCT_FILE="$PWD/example/credentials.yml"
Install python test requirements and run the tests with pytest.
$ pip install -e . -r requirements/test.in
$ pytest tests
Alternatively, use nox to mimic the environment of the gitlab pipeline.
$ pip install nox
$ nox -p 3
Roadmap
Current Supported Resources states: kv_v2.secret
Acknowledgements
Img Shields for making repository badges easy.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file idem-vault-1.0.0.tar.gz
.
File metadata
- Download URL: idem-vault-1.0.0.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/40.0 requests/2.31.0 requests-toolbelt/1.0.0 urllib3/2.0.4 tqdm/4.65.0 importlib-metadata/6.8.0 keyring/24.2.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7c62f059c82589c925a3a88a3722a28fb4623fb67781bc367c73512f98f2499 |
|
MD5 | 3566477a5cf335498c4eff05188ad170 |
|
BLAKE2b-256 | cd1ebd903887d0cc5c5e38f53cea81acb7fc83930a40ff0ce638055e3681a99d |
File details
Details for the file idem_vault-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: idem_vault-1.0.0-py3-none-any.whl
- Upload date:
- Size: 19.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/40.0 requests/2.31.0 requests-toolbelt/1.0.0 urllib3/2.0.4 tqdm/4.65.0 importlib-metadata/6.8.0 keyring/24.2.0 rfc3986/2.0.0 colorama/0.4.6 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26362dedb5f3d3afba710a64929df2524775cb6d81ff7ef2a6e842acf4c8a23a |
|
MD5 | 7c23bd24767830d041426de123707464 |
|
BLAKE2b-256 | 5223b2abb4aab3caed1236156b8b89ec98ac089f4425f9b0ad49b6b0f5143f01 |