A simple CLI tool for making interacting with SSM parameters suck less. The name is a private joke, not a typo.
$ brew install icevans/parms/parms
Not yet supported.
- Install rustup
- From the root of this repository, run
cargo build --release
- Copy
./target/release/parms
to somewhere in yourPATH
variable
parms
respects the usual AWS configuration methods. First, it will look in
AWS environment variables, then in your ~/.aws/config file. If you connect via
SSO, be sure that you have logged in via SSO, and that you have selected a profile
by setting the AWS_PROFILE
environment variable.
A note on region:
- If you provide the
--region
argument, this takes precedence - If you omit this,
parms
will check for aAWS_REGION
orAWS_DEFAULT_REGION
environment variable - If this is missing,
parms
will check for a region on your selected profile - If this too is missing, you will get an error
Usage: parms [OPTIONS] <COMMAND>
Commands:
fetch Fetches the value of selected parameter
edit Allows to edit the current value of selected parameter
help Print this message or the help of the given subcommand(s)
Options:
-r, --region <REGION> Search in this AWS region
-h, --help Print help
-V, --version Print version