Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 1.04 KB

README.md

File metadata and controls

25 lines (20 loc) · 1.04 KB

AWS Parameter Store generator

MIT licensed

This script will help creating/delete parameter store params by simply listing them in a yaml file.
This become handy when you have multiple parameters to create/update/delete.

Prerequisites

  • Install prerequisites by running the below command:
pip3 install -r requirements.txt

Usage:

# Read the params prefixed with the specifued value
python3 parameter_store_cli.py read --prefix=/PARAM_PREFIX/ | python -m json.tool

# Create the params listed in the params.yaml file
python3 parameter_store_cli.py create

# Delete the params listed in the params.yaml file
python3 parameter_store_cli.py delete