AWS secrets manager helper
Project description
aws-vault
===============================
![travis-ci](https://api.travis-ci.org/spacetimelabs/awsvault.svg)
version number: 0.1.0
author: Spacetime Labs
Overview
--------
AWS Secrets Manager helper
Installation / Usage
--------------------
To install use pip:
$ pip install awsvault
Or clone the repo:
$ git clone https://github.com/spacetimelabs/awsvault.git
$ python setup.py install
Contributing
------------
pip install requirements-dev.txt
tox
Example
-------
```python
vault = Vault("myproject/email_secrets")
email_user = vault.get("EMAIL_USER")
email_password = vault.get("EMAIL_PASS")
```
```python
OVERRIDE = {
'EMAIL_USER': 'bart.simpsons@example.com'
}
vault = Vault("myproject/email_secrets", look_first=OVERRIDE)
email_user = vault.get('EMAIL_USER')
assert email_user == 'bart.simpsons@example.com'
```
```python
def my_super_special_get_config_fn(name):
if name == 'FRUIT':
return 'avocado'
vault = Vault("myproject/email_secrets", look_first=my_super_special_get_config_fn)
email_user = vault.get('EMAIL_USER')
fruit = vault.get('FRUIT')
assert fruit == 'avocado'
```
===============================
![travis-ci](https://api.travis-ci.org/spacetimelabs/awsvault.svg)
version number: 0.1.0
author: Spacetime Labs
Overview
--------
AWS Secrets Manager helper
Installation / Usage
--------------------
To install use pip:
$ pip install awsvault
Or clone the repo:
$ git clone https://github.com/spacetimelabs/awsvault.git
$ python setup.py install
Contributing
------------
pip install requirements-dev.txt
tox
Example
-------
```python
vault = Vault("myproject/email_secrets")
email_user = vault.get("EMAIL_USER")
email_password = vault.get("EMAIL_PASS")
```
```python
OVERRIDE = {
'EMAIL_USER': 'bart.simpsons@example.com'
}
vault = Vault("myproject/email_secrets", look_first=OVERRIDE)
email_user = vault.get('EMAIL_USER')
assert email_user == 'bart.simpsons@example.com'
```
```python
def my_super_special_get_config_fn(name):
if name == 'FRUIT':
return 'avocado'
vault = Vault("myproject/email_secrets", look_first=my_super_special_get_config_fn)
email_user = vault.get('EMAIL_USER')
fruit = vault.get('FRUIT')
assert fruit == 'avocado'
```
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
awsvault-0.1.0.tar.gz
(3.4 kB
view details)
File details
Details for the file awsvault-0.1.0.tar.gz
.
File metadata
- Download URL: awsvault-0.1.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.9.1 pkginfo/1.3.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9568d0238167f26dc1cdff0f7531721ac2464d36244b94e1b225eed064d5d2a6 |
|
MD5 | 36c46584acc61d3cfbfe7b117df53396 |
|
BLAKE2b-256 | 594c3c98b3cd82cc1cc541f4e9aae767f42257e4b16afd335766134d584afb9b |