Flask extension to read and write secrets from Azure Key Vault
Project description
Flask-KeyVault
A Flask extension to read and write secrets using Azure Key Vault.
Installation
$ pip install Flask-KeyVault
Usage
import os
from flask import Flask
from flask_keyvault import KeyVault
from flask_keyvault.exceptions import KeyVaultAuthenticationError
demo = Flask(__name__)
demo.config.update(
AZURE_CLIENT_ID = os.getenv('AZURE_CLIENT_ID','YOUR-AZURE_CLIENT_ID'),
AZURE_SECRET = os.getenv('AZURE_SECRET', 'YOUR-AZURE-SECRET'),
AZURE_TENANT = os.getenv('AZURE_TENANT', 'YOUR-AZURE-TENANT')
)
keyvault = KeyVault()
keyvault.init_app(demo)
key_vault_url = 'https://mykeyvault.vault.azure.net/'
@demo.route('/')
def index():
try:
my_secret = keyvault.get(key_vault_url, "my_secret", 1)
return my_secret
except KeyVaultAuthenticationError:
return "authentication error"
demo.run(debug=True)
Contributing
Questions, comments or improvements, please create an issue on Github.
To suggest a change to the code or documentation, please create a new pull request on GitHub. Also, please squash multiple commits into a single commit in your pull request by rebasing onto the master branch.
License
Flask-KeyVault is licensed under the MIT license.
Contact
Home: www.erikhoward.net
Twitter: @erik_howard
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
Flask-KeyVault-0.6.0.tar.gz
(3.5 kB
view details)
Built Distribution
File details
Details for the file Flask-KeyVault-0.6.0.tar.gz
.
File metadata
- Download URL: Flask-KeyVault-0.6.0.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 183a33873ff9ae1c5d2efb37005e2e1dbcc33f9264ffe5c407c05ad1a6e1ede2 |
|
MD5 | ce4b5c3b039f2a7c741f0f1c3f43dfc1 |
|
BLAKE2b-256 | 359c68d6e3c92745e07ddd436d0fe56b96b5134ba6f22a7fdc2052f521fb05d7 |
File details
Details for the file Flask_KeyVault-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: Flask_KeyVault-0.6.0-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 314d214daef0f8687958cf6a279370e9329b84cd884b3b903637a28d212104be |
|
MD5 | a77544f0079cde407a515900b6b22da2 |
|
BLAKE2b-256 | 3d85040c6f5023ef5a3850de4d876ddb69faa8597a41a79f1e08c56c24c0b5cf |