Allows you to read parameters from AWS Parameter Store and operate on results as on dictionary.
Project description
SSMEnv
| master | coverage | PyPI | Python | Licence |
|---|---|---|---|---|
SSMEnv allows you to read parameters from AWS Parameter Store and operate on results as on dictionary.
Installation
Only requirement is to have boto3 installed.
pip install ssmenv
Reading parameters
Let's assume we have two parameters token and url under /service/my-service namespace.
Reading both parameters is as simple as initialising class object.
from ssmenv import SSMEnv
params = SSMEnv("/service/my-service")
Done! Now we can access /service/my-service/token and /service/my-service/url in params variable!
Now params can be accesses as python dict type.
Interacting with SSMEnv instance
As you know by now, instance of SSMEnv can be accessed as any dict in python which means you can do things like:
from ssmenv import SSMEnv
params = SSMEnv("/service/my-service")
# 1. Access value directly
token = params["SERVICE_MY_SERVICE_TOKEN"]
# 2. Get list of all loaded parameter's names
list(params.keys())
# 3. Get list of all loaded parameter's values
list(params.values())
# and so on...
Fetching multiple namespaces at once
In real world most often you will access parameters from different namespaces, you can easily do that with SSMEnv
by passing tuple
from ssmenv import SSMEnv
params = SSMEnv("/service/my-service", "/resource/mysql")
Now params will have all parameters from both /service/my-service and /resource/mysql.
AWS Lambda decorator
If you use AWS lambda, you might find handy ssmenv decorator. It behaves same as if you would initialise SSMEnv by hand, but additionally it injects instance of SSMEnv into context.params attribute.
from ssmenv import ssmenv
@ssmenv("/service/my-service")
def handler(event, context):
return context.params
Populating os.environ
You can hide use of SSMEnv by using os.environ dict.
import os
from ssmenv import SSMEnv
os.environ = {**os.environ, **SSMEnv("/service/my-service")}
Removing common prefixes
Accessing your parameters through whole namespaces can sometimes be not convenient especially if you have very long names.
Hence why you can use prefixes parameter, to make your code cleaner.
from ssmenv import SSMEnv
params = SSMEnv("/service/my-service", prefixes=("/service/my-service",))
params["TOKEN"]
Returning dict in case there is no AWS context
You might want to run your application without AWS, e.g. through docker on your local machine and mock parameters.
For that you can use no_aws_default attribute.
import os
from ssmenv import SSMEnv
os.environ["SERVICE_MY_SERVICE_TOKEN"] = "mocked-token" # that might be set in docker-compose
params = SSMEnv("/service/my-service", no_aws_default=os.environ)
Passing your own boto3 client
You can pass your own boto3 client as well.
import boto3
from ssmenv import SSMEnv
ssm_client = boto3.client("ssm")
params = SSMEnv("/service/my-service", ssm_client=ssm_client)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ssmenv-2.1.0.tar.gz.
File metadata
- Download URL: ssmenv-2.1.0.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0a2 CPython/3.6.5 Darwin/19.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80504922c5824ce44093645f3e915493e0e8d20dd3173447d57fea2af1b525f8
|
|
| MD5 |
52f312dd3e32beec182bbbcc2f1a7e6d
|
|
| BLAKE2b-256 |
c35a158299522ed97768dac1eac964e56d7537dd65c05becd23f5a70ac8ceb8c
|
File details
Details for the file ssmenv-2.1.0-py3-none-any.whl.
File metadata
- Download URL: ssmenv-2.1.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.0a2 CPython/3.6.5 Darwin/19.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fd343f31ab8e7ec408179dfebcb948141bdf20332b9ea0ce821cb486fec2c00
|
|
| MD5 |
efa37fc2eea18ea769fc08e01573c6e0
|
|
| BLAKE2b-256 |
e1984ccb28aac0310c3e608abfe8a01d5e6df2063e67dff2cba178433bad5858
|