Automates the process of creating, modifying, and deleting Parameter Store parameters.
Example: ./param-manage edit test www
Opens a YAML representation of your Parameter Store values in vim
or the editor of your choice ($EDITOR
environment variable). Changes to the file will be synced to AWS ParameterStore.
- You are managing Parameters for one or more applications that have one or more environments (test, staging, live). These applications/environments have been granted proper permissions via IAM to access ParameterStore and the KMS keys used to encrypt secure ParameterStore values.
- Parameter names are pathed by Environment and Application. e.g. "/test/myapp/MY_SETTING"
- One KMS Master Key exists for each Environment/Appliction combination (the same key can be used for multiple combinations). These keys are tagged as such. e.g. "Environment": "test", "Application": "myapp".
- Your AWS User has permission to access these KMS keys as well as their Tags and to manage ParameterStore parameters.
pipenv
is installed- Your AWS keys are properly configured such that
boto3
can locate them.
- Clone this repository
pipenv install
to set up the dependenciespipenv shell
to activate virtual env./param-manage edit <environment_name> <application_name>
(Ex,./param-manage test www
)- Follow the instructions in the editor for modifying Parameters