Parameter store for secrets
Project description
param-store works with parameter stores (e.g. EC2 Parameter Store) to resolve specific parameters. It is designed to be pluggable so that stores can be created for e.g. Vault or Azure Key Vault.
A use-case is to store secrets in the EC2 parameter store and resolve them automatically.
Installation
pip install param-store
Usage
As a standalone package
from param_store import EC2ParameterStore
from param_store import interpolate_dict
data = {
'key': 'my-secret-{{ parameter-1 }}'
}
store = EC2ParameterStore()
result = interpolate_dict(data, store)
assert result[key] == 'my-secret-password'
In combination with django-environ
from environ import Env
from param_store import EC2ParameterStore
from param_store.contrib import resolve_django_environ
env = Env()
store = EC2ParameterStore()
resolve_django_environ(env, store)
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file param-store-0.2.2.tar.gz.
File metadata
- Download URL: param-store-0.2.2.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8660fe9195cec6b097b30fffffd730e08bb76e1b774128291b62867b05535c4e
|
|
| MD5 |
2a414bc276dcf75c9fe10d1120f8a175
|
|
| BLAKE2b-256 |
7cb36a3d31699a9ffc4644bb5f6af743799bb58f3ba1597234d30075fc556152
|
File details
Details for the file param_store-0.2.2-py2.py3-none-any.whl.
File metadata
- Download URL: param_store-0.2.2-py2.py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c4a02cf33969611bc3f94efcef71db2a35e252694af6e7bca6a7a5f82e8586e
|
|
| MD5 |
a95910f2e42152ee7f86771be6a58a23
|
|
| BLAKE2b-256 |
d651c66ec5809f4763185b19324a546b0ecfcae78949091c95196d78fa27a314
|