Skip to main content

Thin wrapper for the AWS Secrets Manager library. Allows for getting secrets in a standard way.

Project description

SLD Secrets Getter

Very thin wrapper for the AWS Secrets Manager library for getting secrets in a standard way.

  • Free software: MIT license

Usage

Pre-requisites

  • AWS credentials
    • This package assumes the AWS cli environment variables have been configured for authentication. Alternatively, you can provide the values for those variables to the constructor.

Example

Install the package:

pip install sld.secrets-getter

Running with AWS cli environment variables set:

from secrets_getter import SecretsManagerService

secrets_service = SecretsManagerService()
secrets = secrets_service.get_secrets("NAME_OF_AWS_SECRETS_MANAGER_SECRETS_SET")

A dict with the key value pairs from the Secrets set is returned.

Providing the AWS cli credentials to the constructor:

from secrets_getter import SecretsManagerService

region = "us-west-2"
key_id = "AWS_ACCESS_KEY_ID"
secret_access_key = "SECRET_ACCESS_KEY"

secrets_service = SecretsManagerService(region=region, access_key_id=key_id, secret_access_key=secret_access_key)
secrets = secrets_service.get_secrets("NAME_OF_AWS_SECRETS_MANAGER_SECRETS_SET")

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

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

sld.secrets_getter-0.2.5.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

sld.secrets_getter-0.2.5-py2.py3-none-any.whl (5.4 kB view hashes)

Uploaded Python 2 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