diff options
author | programmer04 <jakub.warczarek@gmail.com> | 2019-05-26 12:31:37 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-05-26 12:31:37 +0200 |
commit | 1343ab67edd8a81b75aceca77ddb526be87a20c1 (patch) | |
tree | bdefb4b6ad21dc41662492e8456b8844e89a68cb /plugins | |
parent | 5d875d68123471b0002946a14bfaecd7451d39b0 (diff) | |
download | zsh-1343ab67edd8a81b75aceca77ddb526be87a20c1.tar.gz zsh-1343ab67edd8a81b75aceca77ddb526be87a20c1.tar.bz2 zsh-1343ab67edd8a81b75aceca77ddb526be87a20c1.zip |
aws: check availability of aws profiles (#7839)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/aws/aws.plugin.zsh | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/plugins/aws/aws.plugin.zsh b/plugins/aws/aws.plugin.zsh index b78cd2ac1..5f5bf9bbb 100644 --- a/plugins/aws/aws.plugin.zsh +++ b/plugins/aws/aws.plugin.zsh @@ -1,29 +1,35 @@ -# AWS profile selection - -function agp { +agp() { echo $AWS_PROFILE } -function asp { +# AWS profile selection +asp() { if [[ -z "$1" ]]; then unset AWS_DEFAULT_PROFILE AWS_PROFILE AWS_EB_PROFILE echo AWS profile cleared. return fi + local available_profiles=($(aws_profiles)) + if [[ -z "${available_profiles[(r)$1]}" ]]; then + echo "${fg[red]}Profile '$1' not found in '${AWS_CONFIG_FILE:-$HOME/.aws/config}'" >&2 + echo "Available profiles: ${(j:, :)available_profiles:-no profiles found}${reset_color}" >&2 + return 1 + fi + export AWS_DEFAULT_PROFILE=$1 export AWS_PROFILE=$1 export AWS_EB_PROFILE=$1 } -function aws_change_access_key { - if [[ -z "$1" ]] then +aws_change_access_key() { + if [[ -z "$1" ]]; then echo "usage: $0 <profile>" return 1 fi echo Insert the credentials when asked. - asp "$1" + asp "$1" || return 1 aws iam create-access-key aws configure --profile "$1" @@ -32,16 +38,18 @@ function aws_change_access_key { aws iam list-access-keys } -function aws_profiles { +aws_profiles() { [[ -r "${AWS_CONFIG_FILE:-$HOME/.aws/config}" ]] || return 1 - reply=($(grep '\[profile' "${AWS_CONFIG_FILE:-$HOME/.aws/config}"|sed -e 's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/')) + grep '\[profile' "${AWS_CONFIG_FILE:-$HOME/.aws/config}"|sed -e 's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/' } -compctl -K aws_profiles asp aws_change_access_key +_aws_profiles() { + reply=($(aws_profiles)) +} +compctl -K _aws_profiles asp aws_change_access_key # AWS prompt - -function aws_prompt_info() { +aws_prompt_info() { [[ -z $AWS_PROFILE ]] && return echo "${ZSH_THEME_AWS_PREFIX:=<aws:}${AWS_PROFILE}${ZSH_THEME_AWS_SUFFIX:=>}" } |