Skip to main content

Secret Manager AWS

Project description

secret-manager

Secret manager for Python

How to use

Add dependency -
secrets-manager==0.0.2

Set environment variable -
APP_ENV = prod/staging
APP_NAME = IAMservice

In config file:
from secretmanager import secrets

redshift_secrets = secrets['redshift']
REDSHIFT_HOST = redshift_secrets['host']
REDSHIFT_PORT = redshift_secrets['port']
REDSHIFT_USER = redshift_secrets['username']
REDSHIFT_PASS = redshift_secrets['password']
REDSHIFT_DB = redshift_secrets['dbname']

Secret manager changes -
Secret format is -
APP_NAME + "_" + APP_ENV + "_" + SECRET_NAME

Go to secret manager and add secret name in above defined format eg(IAMservice_prod_redshift)
Add key value pair inside as -
host = <redshift_host>
port = <redshift_host>

SECRET_NAME will be used to access secret in your code.
In above example SECRET_NAME = redshift

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

secret-manager-0.0.3.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

secret_manager-0.0.3-py3-none-any.whl (4.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page