1.2.0 • Published 1 year ago
ssm-env-tools v1.2.0
SSM-Env-Tools
SSM-Env-Tools is a Node.js command-line utility designed to streamline the management of AWS Systems Manager (SSM) parameters, specifically catering to the conventions /{env}/{service}/{env_name}. This tool simplifies the import and export of environment variables between your local development environment and AWS SSM.
Installation
Ensure you have Node.js installed on your machine. Then, install the utility using npm:
npm install -g ssm-env-toolsor you can use npx
Usage
Pull: Retrieve .env from SSM
Use the pull command to retrieve environment variables from AWS SSM and save them to a local .env file.
npx ssm-env-tools pull --env=<environment> \
--service=<service> \
--path=<local-path-with-filename> \
[--dry-run] [--skip-prompt] [--region=<region>]<environment>: Environment name.<service>: Service name.<local-path-with-filename>: Local path, including the file name, where the.envfile will be saved.--dry-run: Display the environment variables that will be saved to the.envfile without actually saving them.--skip-prompt: Skip the prompt to confirm the saving of the environment variables to the.envfile.--region: AWS region where the SSM parameters are stored. If not provided, the default profile region will be used.
Push: Update SSM with .env
Use the push command to update AWS SSM with environment variables from a local .env file.
npx ssm-env-tools push --path=<local-path-with-filename> \
--env=<environment> \
--service=<service> \
[--dry-run] [--skip-prompt] [--region=<region>]<local-path-with-filename>: Local path, including the file name, to the.envfile.<environment>: Environment name.<service>: Service name.--dry-run: Display the environment variables that will be saved to AWS SSM without actually saving them.--skip-prompt: Skip the prompt to confirm the saving of the environment variables to AWS SSM.--region: AWS region where the SSM parameters are stored. If not provided, the default profile region will be used.
Examples
Pull .env from SSM
npx ssm-env-tools pull --env='stage' --service='website' --path='.env'Push .env to SSM
npx ssm-env-tools push --path='.env' --env='stage' --service='website'Options
--version: Display the version number.-h, --help: Display help information.
License
This project is licensed under the MIT License - see the LICENSE.md file for details.