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.1.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: aws_chain_secrets-1.0.1.tar.gz
  • Upload date:
  • Size: 6.2 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.1.tar.gz
Algorithm Hash digest
SHA256 caaf4091049a63e71991bfee2f1036a30c658e83d1314a1ea35145aa8545cf1b
MD5 d88d35ac3fd22f1b08eceb5b2534f127
BLAKE2b-256 b6ee737ea11095442fc82db5d4ec863977ba7ad7c5bee6085283e3b9f0b3cecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aws_chain_secrets-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 089b0c3ffb8412b87a56675e42fd4f0a022cbd779035391de03b1caf0d5ec7ec
MD5 969ea305a5797a02139e5414abcdd469
BLAKE2b-256 adcc4d323515f0d1f82e1ba49822ea11d9b46b4e1faa3157d15dea2a76565152

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