From d68b0a4198d37f2e1910d858ebb641486466e71a Mon Sep 17 00:00:00 2001 From: Anay Nayak Date: Mon, 5 Oct 2020 14:22:53 +0530 Subject: [PATCH] aws-vault: add page (#4471) --- pages/common/aws-vault.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/aws-vault.md diff --git a/pages/common/aws-vault.md b/pages/common/aws-vault.md new file mode 100644 index 0000000000..922990a54c --- /dev/null +++ b/pages/common/aws-vault.md @@ -0,0 +1,28 @@ +# aws-vault + +> A vault for securely storing and accessing AWS credentials in development environments. +> More information: . + +- 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}}`