aws-vault: add page (#4471)

beep
Anay Nayak 2020-10-05 14:22:53 +05:30 committed by GitHub
parent cb2bd5938a
commit d68b0a4198
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/common/aws-vault.md Normal file
View File

@ -0,0 +1,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}}`