CLI tool for import and export SSM parameters
npm install store-parametersCLI tool for import and export SSM parameters




* store-parameters
* Features
* Usage
* Commands
- store-parameters
- Features
- Usage
- Commands
- store-parameters export FILE
- [store-parameters help [COMMAND]](#store-parameters-help-command)
- store-parameters import FILE
- 🔄 Import & Export - Seamlessly import and export AWS SSM parameters to/from CSV files
- 👤 AWS Profile Support - Select from multiple AWS profiles with interactive prompts and MFA support
- 🔐 1Password Integration - Reference secrets directly from 1Password vaults using op:// URI format
- 🔒 Secure Strings - Full support for both String and SecureString parameter types
- 📊 Custom Delimiters - Support for CSV, TSV, and custom delimiter formats
- ✅ CSV Validation - Built-in validation to ensure data integrity before import
``sh-session`
$ npm install -g store-parameters
$ store-parameters COMMAND
running command...
$ store-parameters (--version)
store-parameters/1.1.3 linux-x64 node-v24.11.0
$ store-parameters --help [COMMAND]
USAGE
$ store-parameters COMMAND
...
* store-parameters export FILE
* [store-parameters help [COMMAND]](#store-parameters-help-command)store-parameters import FILE
*
Export SSM path to csv file
`
USAGE
$ store-parameters export FILE -p
ARGUMENTS
FILE Output csv file
FLAGS
-d, --delimiter=
-p, --path=
--profile=
--region=
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Export SSM path to csv file
EXAMPLES
$ store-parameters export
`
_See code: src/commands/export.ts_
Display help for store-parameters.
`
USAGE
$ store-parameters help [COMMAND...] [-n]
ARGUMENTS
[COMMAND...] Command to show help for.
FLAGS
-n, --nested-commands Include all nested commands in the output.
DESCRIPTION
Display help for store-parameters.
`
_See code: @oclif/plugin-help_
Import csv file to SSM
`
USAGE
$ store-parameters import FILE [--json] [-d
ARGUMENTS
FILE Input csv file
FLAGS
-d, --delimiter=
--profile=
--region=
GLOBAL FLAGS
--json Format output as json.
DESCRIPTION
Import csv file to SSM
EXAMPLES
$ store-parameters import
``
_See code: src/commands/import.ts_