This plugin provides completion support for awscli to manage AWS profiles/regions and display them in the prompt.
To use it, add aws to the plugins array in your zshrc file.
plugins=(... aws)-
asp [<profile> <region>]: sets$AWS_PROFILEand$AWS_DEFAULT_PROFILE(legacy) to<profile>and$AWS_DEFAULT_REGIONto<region>. It also sets$AWS_EB_PROFILEto<profile>for the Elastic Beanstalk CLI. Runaspwithout arguments to clear the profile. -
agp: gets the current value of$AWS_PROFILE. -
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). Used to provide completion for theaspfunction.
- Set
SHOW_AWS_PROMPT=falsein 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.
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
>.