项目作者: taherbs

项目描述 :
This script will help creating parameter store params by simply listing them into a yaml file.
高级语言: Python
项目地址: git://github.com/taherbs/aws-parameter-store-generator.git
创建时间: 2018-11-02T18:20:39Z
项目社区:https://github.com/taherbs/aws-parameter-store-generator

开源协议:MIT License

下载


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:
    1. pip3 install -r requirements.txt

Usage:

  • Create your params.yaml file, use params.yaml.template as a template
  • Run the below command:
    ```bash

    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
```