Use AWS-Vault to manage access to AWS
AWS-Vault is a great tool for securely controlling your access to AWS and is great when assuming or switching roles. For Example, if you need admin rights in AWS.
It’s an awesome Github project. I will use macOS in this example, but the same process will work for Unix-based systems such as Linux. Click here for the Documentation.
For Alternative Operating Systems, check out this:
Step 1 – Install AWS-Vault
There are several ways to install AWS-Vault
How do I integrate AWS Vault?
You can install AWS Vault:
- on Windows with Chocolatey:
choco install aws-vault
- on Windows with Scoop:
scoop install aws-vault
- on Linux with Homebrew on Linux:
brew install aws-vault
- on Arch Linux:
pacman -S aws-vault
- on FreeBSD:
pkg install aws-vault
- with Nix:
nix-env -i aws-vault
Install with Brew on MacOS
This example demonstrates how to install AWS-VAULT on Macintosh, and this process will be almost identical on Linux-based distributions. My personal favorite tool for installing packages on macOS is Brew.
Visit Brew.SH to find out more.
Open your terminal session. I will be using iTerm2, and you can find a link to it here.
The Installation Command requires Brew to install if you have not already got Brew installed type:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Now Install vault and the AWS-CLI
brew install aws-vault
brew install awscli
Note – These commands also work on Linux
Step 2 – Create an Access Key in the AWS Console
Vault requires a programmatic access key to your AWS credentials.
Log in to AWS Console
- Go to IAM → Users → your user
- Go to Security Credentials Tab
- Select Create Access Key
What commands would you need to create an AWS secret from Vault?
Step 3 – Create a KeyChain
Return to your macOS terminal and enter the following:
aws-vault add *prod/non-prod*
Note - substitute *prod/non-prod* with whatever you want to call your AWS-Vault KeyChain
Enter the Access Key ID & Secret Key when requested
This information is available in the AWS console > IAM > Users > <Your User ID>
Step 4 – Create / Update your local AWS config
Edit your AWS Config File (typically located at ~/.aws/config)
sudo nano ~/.aws/config
and add the below configuration:
[default] region=my_region output=json
credential_process=aws-vault exec prod -j
[profile myprofile1]
credential_process=aws-vault exec prod -j
[profile myprofile_admin]
source_profile=myprofile1
role_arn=arn:aws:iam::XXXXXXXXXXXXXXXXXXX:role/my-admin-role
mfa_serial=arn:aws:iam::XXXXXXXXXXXXXXXXX:mfa/my_mfa
Note - Substitute role_arn and mfa_serial with you details from the AWS Console
Step 5 – Log into AWS with AWS-Vault
To access AWS using VAULT
Open a terminal session and type
aws-vault login prod
You will be prompted for your local Keystore password, and your MFA code, and then the AWS console will open, and you will automatically assume the role configured in myprofile_admin.
Top Q&A for AWS-Vault
What is AWS Vault?
Vault is a Keystore that securely controls access to AWS using existing user roles and multi-factor authentication.
Top tips for using AWS Vault
1. Consider using AWS Vault to store data that you need to keep safe and accessible.
2. AWS Vault is a great way to store data that you need to access quickly.
3. AWS Vault makes it easy to manage your accounts and data.
How do I use AWS Vault?
This procedure will give you a very good start on AWS-Vault. If you want to dig deeper, there is a detailed readme from the creators of AWS-Vault.
How do I install AWS-Vault?
AWS-Vault is a software application that helps organizations securely store sensitive data. To install AWS-Vault, follow these steps:
1. Download the AWS-Vault installer.
2. Start the installer and follow the instructions.
3. After the installation is complete, you can start using AWS-Vault.
How do I use AWS-Vault with MFA?
See Step 4 of this procedure.
Thanks for taking the time to read this article. if you have any questions or feedback, please write in the comment section below.
Great post! I’ve been looking for a reliable way to manage my AWS credentials, and AWS-Vault seems like a perfect solution. The step-by-step instructions were particularly helpful. Thanks for sharing!