Skip to main content

This aims to enable the use of one or more secrets from AWS SecretsManager.

Project description

This package aims to make using AWS SecretsManager more comfortable.

Introduce

This aims to enable the use of one or more secrets from AWS SecretsManager.

If more than one secret is used, the secret specified last takes precedence.

For example, if you use secrets named A and B in that order, overlapping entries from A and B will later use the value of the specified B entry.

>>> A = {"foo": 1, "bar": 2}
>>> B = {"bar": 3}
>>> secrets("bar", casting_type=int)
3

Install

$ python -m pip install aws_chain_secrets

How to use

connect and fetch manually

from aws_chain_secrets import SecretsManager
secrets = SecretsManager('ap-northeast-2', 'secret_name_1', 'secret_name_2', ...)
secrets.connect()
secrets.fetch()
secrets(key="A", default=None, casting_type=int)
secrets.disconnect()

use with context manager

You can omit connect(), fetch() and disconnect() when using context manager.

from aws_chain_secrets import SecretsManager
with SecretsManager('ap-northeast-2', 'secret_name_1', 'secret_name_2', ...) as secrets:
    secrets(key="A", default=None, casting_type=int)

type casting

All secret values ​​retrieved from AWS SecretsManager are string types by default.

You can change it to any type you want.

>>> secrets(key="A", casting_type=int)
1
>>> secrets(key="SOME_ARRAY", casting_type=list)
['1', '2', '3', '4']
>>> secrets(key="SOME_ARRAY", casting_type=list[int])
[1, 2, 3, 4]

default value

You can specify a default value, just like when using Python dict’s get.

# if the key value of A does not exist, 0 specified as default is returned.
>>> secrets(key="A", default=0)
0

change value

You can change (or add) the value of a specified secret by name.

>>> secrets.set('secret_name_1', 'key', 'value')

update remote (AWS secrets manager) data from local

You can update (upload) the values of a specified secret by name from local to remote.

>>> secrets.update('secret_name_1')

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

aws_chain_secrets-1.0.0.tar.gz (6.3 kB view details)

Uploaded Source

Built Distribution

aws_chain_secrets-1.0.0-py3-none-any.whl (7.4 kB view details)

Uploaded Python 3

File details

Details for the file aws_chain_secrets-1.0.0.tar.gz.

File metadata

  • Download URL: aws_chain_secrets-1.0.0.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.3

File hashes

Hashes for aws_chain_secrets-1.0.0.tar.gz
Algorithm Hash digest
SHA256 4306a1dc81421ab398bffeec6ac8f3c60b8b5e7cd761d97ccaea3d11a0ae9df2
MD5 7f9a34dadb5704239f365aed70a3b2b4
BLAKE2b-256 c700d2916214eb51f7e9337191a4867fac3091239cd974448b87e607c9df82ce

See more details on using hashes here.

File details

Details for the file aws_chain_secrets-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aws_chain_secrets-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ef79e14867143fa6b9a229e0192408fd2d8687b1264952ba3c8c4e2c08035483
MD5 642d8b891648ef29c9101826cdfb6b76
BLAKE2b-256 f1d8f993fafe380cd7fee7708e8204f996513d628c21208766a4821a64d74af3

See more details on using hashes here.

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