Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/aws-vault Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`