summaryrefslogtreecommitdiff
path: root/plugins/aws/README.md
diff options
context:
space:
mode:
authorMaksym <maksyms@users.noreply.github.com>2020-10-24 22:07:49 +0100
committerGitHub <noreply@github.com>2020-10-24 23:07:49 +0200
commitfcb6fa78a1304f9a8eff2a7563658de04a13d499 (patch)
tree1b56b41818f4ea4cf22d1e853d41fb9d30b6e4f0 /plugins/aws/README.md
parent66f9fdabc1d08374c3eef212928f81ff32e2241e (diff)
downloadzsh-fcb6fa78a1304f9a8eff2a7563658de04a13d499.tar.gz
zsh-fcb6fa78a1304f9a8eff2a7563658de04a13d499.tar.bz2
zsh-fcb6fa78a1304f9a8eff2a7563658de04a13d499.zip
aws: add role delegation and MFA support as per IAM Best Practices (#8419)
* Added role delegation support and MFA support as per IAM Best Practices * fix: grep with color enabled breaks profile parsing * fix: compatible with MacOS basic sed * docs: Added jq as a dependency * feat: added variable session duration, if the role to be assumed permits it. * bug: incorrect assigment for session length * fix: profile extraction failed with some versions of sed Fixed the issue that resulted from merging upstream changes to allow "." in the profile name * fix: broken profile parsing when profile name contains "@"
Diffstat (limited to 'plugins/aws/README.md')
-rw-r--r--plugins/aws/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/aws/README.md b/plugins/aws/README.md
index 57c3b54ac..4ceb71425 100644
--- a/plugins/aws/README.md
+++ b/plugins/aws/README.md
@@ -3,7 +3,7 @@
This plugin provides completion support for [awscli](https://docs.aws.amazon.com/cli/latest/reference/index.html)
and a few utilities to manage AWS profiles and display them in the prompt.
-To use it, add `aws` to the plugins array in your zshrc file.
+To use it, make sure [jq](https://stedolan.github.io/jq/download/) is installed, and add `aws` to the plugins array in your zshrc file.
```zsh
plugins=(... aws)