This library allows to easily obtain keys from aws ssm.
Let's say we have some parameters in SSM
/some/path/key = 'x'
/some/path/pass = 'y'
In order to obtain the information you will have to call
from ssm import get_keys, get_keys_env
get_keys('sa-east-1', '/some/path/', cache_file='.cache')
# the result would be
{'key': 'x', 'pass': 'y'}
get_keys_env()
{'key': 'x', 'pass': 'y'}
This method will return parameters from ssm.
region_name
aws region name, for examplesa-east-1
key_path
the main path of the ssm parameter, for example/some/path/
cache_file
the name of the cache file where the parameters will be stored temporarily. If you want to disable the cache, passNone
as a parameter.ignore_load
indicated to ignore the loading of the parameters and return an empty dict.with_decryption
indicated if the parameters that we want to retrieve are encrypted.fail_on_error
in case there is an error getting the credentials it will be raised.
This method will return the same information that get_keys
but instead of asking for arguments it will obtain the information from the environment variables. In order to use it you have to define the following variables.
AWS_SSM_REGION_NAME
AWS_SSM_APP_PATH
AWS_SSM_CACHE_FILE
# Optionals
AWS_SSM_IGNORE_LOAD # default 0
AWS_SSM_WITH_DECRYPTION # default 0
AWS_SSM_FAIL_ON_ERROR # default 0
for example
AWS_SSM_REGION_NAME=sa-east-1
AWS_SSM_APP_PATH=/some/path/
AWS_SSM_CACHE_FILE=.cache
AWS_SSM_IGNORE_LOAD=0
AWS_SSM_WITH_DECRYPTION=1
AWS_SSM_FAIL_ON_ERROR=0
pip install git+https://github.com/carrerasrodrigo/aws-ssm-helper.git#egg=ssm
This is a list of scripts that helps to parse text and replace values with keys in ssm.
Obtains a key from ssm and prints the value in the stdout.
Use:
ssm_get_key -k key_name > my_key_file
ssm_get_key -k key_name -k key_name2 -s " " > my_key_file
It takes a text to replace (TR) and the name of a key (KEY). This script will replace TR with the value of KEY.
Use:
cat text_file | ssm_replace_from_input -k key_name -r TEXT
pytest tests