-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaws-vault
More file actions
28 lines (15 loc) · 638 Bytes
/
aws-vault
File metadata and controls
28 lines (15 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# aws-vault
> A vault for securely storing and accessing AWS credentials in development environments.
> More information: <https://github.com/99designs/aws-vault>.
- Add credentials to the secure keystore:
aws-vault add {{profile}}
- Execute a command with AWS credentials in the environment:
aws-vault exec {{profile}} -- {{aws s3 ls}}
- Open a browser window and login to the AWS Console:
aws-vault login {{profile}}
- List profiles, along with their credentials and sessions:
aws-vault list
- Rotate AWS credentials:
aws-vault rotate {{profile}}
- Remove credentials from the secure keystore:
aws-vault remove {{profile}}