Rucredstash is a Rust port of CredStash
It uses a combination of AWS Key Management Service (KMS) and DynamoDB to store secrets. This is needed when you want to store and retrieve your credentials (like database password, API Keys etc) securely. A more detailed tutorial is here.
This package offers the interface via both CLI and an library way of accessing it.
``` shellsession $ rucredstash --help rucredstash 0.1 Sibi Prabakaran A credential/secret storage system
USAGE: rucredstash [OPTIONS] [SUBCOMMAND]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
-a, --arn SUBCOMMANDS:
delete Delete a credential from the store
get Get a credential from the store
getall Get all credentials from the store
help Prints this message or the help of the given subcommand(s)
keys List all keys in the store
list List credentials and their versions
put Put a credential from the store
setup setup the credential store
``` The most simple case is to export the proper environment variable and use it: Note that Note that the MFA functionality isn't present in the original
rucredstash. You can also use programs like
aws-env
and use this tool. Example:~/.aws/config
. As a last resort, it will use us-east-1
-t, --table DynamoDB table to use for credential storage. If not specified, credstash will use
the value of the CREDSTASHDEFAULT_TABLE env variable, or if that is not set, the
value
credential-store
will be used
Usage Examples
shellsession
$ export AWS_ACCESS_KEY_ID=xxxx
$ export AWS_SECRET_ACCESS_KEY=xxxx
$ rucredstash list
Enter MFA Code: xxxxx
hello -- version 0000000000000000001 --comment
hellehllobyegood -- version 0000000000000000001 --comment
hello1 -- version 0000000000000000001 --comment
rucredstash
by default uses
DefaultCredentialsProvider,
so your credentials will be based on that. But it even allows complex
usecase (something which is not possible in the original credstash
program);shellsession
$ export AWS_ACCESS_KEY_ID=xxxx
$ export AWS_SECRET_ACCESS_KEY=xxxx
$ rucredstash --arn arn:aws:iam::786946123934:role/admin --mfa_serial arn:aws:iam::786946123934:mfa/sibi --region us-west-2 list
Enter MFA Code: xxxxx
hello -- version 0000000000000000001 --comment
hellehllobyegood -- version 0000000000000000001 --comment
hello1 -- version 0000000000000000001 --comment
shellsession
$ aws-env rucredstash list
hello -- version 0000000000000000001 --comment
hellehllobyegood -- version 0000000000000000001 --comment
hello1 -- version 0000000000000000001 --comment