LinuxCommandLibrary

aws-vault

A vault for securely storing and accessing AWS credentials in development environments.

TLDR

Add credentials to the secure keystore

$ aws-vault add [profile]
copy


Execute a command with AWS credentials in the environment
$ aws-vault exec [profile] -- [aws s3 ls]
copy


Open a browser window and login to the AWS Console
$ aws-vault login [profile]
copy


List profiles, along with their credentials and sessions
$ aws-vault list
copy


Rotate AWS credentials
$ aws-vault rotate [profile]
copy


Remove credentials from the secure keystore
$ aws-vault remove [profile]
copy

Help


Copied to clipboard