Convenience wrapper for AWS Parameter Store/Secrets Manager
Project description
s1crets is a thin Python wrapper to read secrets from cloud resources. Wherever supported, it can be used to read/update non-encrypted values as well.
You can find its documentation at readthedocs.io
Installing
Install and update using pip:
pip install -U s1crets
A Simple Example
# Using AWS Parameter Store
import s1crets.providers.aws
ps = s1crets.providers.aws.ParameterStore()
ps.get('/prod/databases/mysql/bigdb/root')
ps.get_by_path('/prod/databases/mysql')
ps.path_exists('/prod/databases/mysql')
ps.update('/prod/databases/mysql/bigdb/root', 'S3cr3Tp4Ssw0Rd!^')
# AWS Secrets Manager
sm = s1crets.providers.aws.SecretsManager()
sm.get('prod/databases/mysql/bigdb/root')
sm.path_exists('prod/databases/mysql')
sm.update('prod/databases/mysql/bigdb/root', 'S3cr3Tp4Ssw0Rd!^')
$ s1crets get secrets/json_test
{'level1': {'level2': 3}}
$ s1crets get secrets/json_test level1
{'level2': 3}
$ s1crets get secrets/json_test level1 level2
3
This library is developed and used internally at System1
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
s1crets-0.0.5.tar.gz
(8.5 kB
view hashes)
Built Distribution
Close
Hashes for s1crets-0.0.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79359311dffeb0b934c8459a4589e5e290d422a1a186f11846d41a673591b4e7 |
|
MD5 | ffa1b5cd459bffd36f2475dc6e4436d2 |
|
BLAKE2b-256 | e0ba2a78b04368c12c48feafb095b9848e91821ef5647f452dfdfa34e269e4b9 |