summaryrefslogtreecommitdiff
path: root/plugins/aws/README.md
diff options
context:
space:
mode:
authorMaksym <maksyms@users.noreply.github.com>2020-11-04 21:10:22 +0000
committerGitHub <noreply@github.com>2020-11-04 22:10:22 +0100
commit3e6ee85a161c8089955c19364728e167025a911d (patch)
tree8f64a12513c6ea054d3599fa1efc55a77d2b3979 /plugins/aws/README.md
parent852a44094a3bb4df39f8f778bc7ada2ddda09727 (diff)
downloadzsh-3e6ee85a161c8089955c19364728e167025a911d.tar.gz
zsh-3e6ee85a161c8089955c19364728e167025a911d.tar.bz2
zsh-3e6ee85a161c8089955c19364728e167025a911d.zip
fix(aws): support MFA for profiles without role to assume (#9411)
Previously, the plugin only supported MFA for profiles that had a role to assume, specified in role_arn. Now, the plugin supports MFA for profiles without a role to assume. Closes #9408 * refactor(aws plugin): remove dependency on jq Previously, acp command relied on jq. Now that dependency has been removed, as well as some linter suggestions implemented.
Diffstat (limited to 'plugins/aws/README.md')
-rw-r--r--plugins/aws/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/aws/README.md b/plugins/aws/README.md
index 851f586dd..4c2ae96e5 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, make sure [jq](https://stedolan.github.io/jq/download/) is installed, and add `aws` to the plugins array in your zshrc file.
+To use it, add `aws` to the plugins array in your zshrc file.
```zsh
plugins=(... aws)
@@ -40,6 +40,6 @@ plugins=(... aws)
The plugin creates an `aws_prompt_info` function that you can use in your theme, which displays
the current `$AWS_PROFILE`. It uses two variables to control how that is shown:
-- ZSH_THEME_AWS_PREFIX: sets the prefix of the AWS_PROFILE. Defaults to `<aws:`.
+* ZSH_THEME_AWS_PREFIX: sets the prefix of the AWS_PROFILE. Defaults to `<aws:`.
-- ZSH_THEME_AWS_SUFFIX: sets the suffix of the AWS_PROFILE. Defaults to `>`.
+* ZSH_THEME_AWS_SUFFIX: sets the suffix of the AWS_PROFILE. Defaults to `>`.