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.
- Install prerequisites by running the below command:
pip3 install -r requirements.txt
- Create your params.yaml file, use params.yaml.template as a template
- Run the below command:
# 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