Skip to main content

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

# To add credentials to the secure keystore:
aws-vault add <profile>

# To execute a command with AWS credentials in the environment:
aws-vault exec <profile> -- <aws s3 ls>

# To open a browser window and login to the AWS Console:
aws-vault login <profile>

# To list profiles, along with their credentials and sessions:
aws-vault list

# To rotate AWS credentials:
aws-vault rotate <profile>

# To remove credentials from the secure keystore:
aws-vault remove <profile>