README.md 1.4 KB
Newer Older
1
2
3
# aws

This plugin provides completion support for [awscli](https://docs.aws.amazon.com/cli/latest/reference/index.html)
David Kane's avatar
David Kane committed
4
and a few utilities to manage AWS profiles and display them in the prompt.
5
6
7
8
9
10
11
12
13

To use it, add `aws` to the plugins array in your zshrc file.

```zsh
plugins=(... aws)
```

## Plugin commands

14
* `asp [<profile>]`: sets `$AWS_PROFILE` and `$AWS_DEFAULT_PROFILE` (legacy) to `<profile>`.
15
  It also sets `$AWS_EB_PROFILE` to `<profile>` for the Elastic Beanstalk CLI.
David Kane's avatar
David Kane committed
16
  Run `asp` without arguments to clear the profile.
17

18
* `agp`: gets the current value of `$AWS_PROFILE`.
19

20
21
22
* `aws_change_access_key`: changes the AWS access key of a profile.

* `aws_profiles`: lists the available profiles in the  `$AWS_CONFIG_FILE` (default: `~/.aws/config`).
David Kane's avatar
David Kane committed
23
24
25
26
  Used to provide completion for the `asp` function.

## Plugin options

Marc Cornellà's avatar
Marc Cornellà committed
27
28
29
* Set `SHOW_AWS_PROMPT=false` in your zshrc file if you want to prevent the plugin from modifying your RPROMPT.
  Some themes might overwrite the value of RPROMPT instead of appending to it, so they'll need to be fixed to
  see the AWS profile prompt.
David Kane's avatar
David Kane committed
30
31
32
33
34
35
36
37
38

## Theme

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_SUFFIX: sets the suffix of the AWS_PROFILE. Defaults to `>`.