aws.plugin.zsh 2.18 KB
Newer Older
David Kane's avatar
David Kane committed
1
2
# AWS profile selection

3
function agp {
4
  echo $AWS_PROFILE
5
}
6

7
function asp {
David Kane's avatar
David Kane committed
8
  if [[ -z "$1" ]]; then
9
    unset AWS_DEFAULT_PROFILE AWS_PROFILE AWS_EB_PROFILE
David Kane's avatar
David Kane committed
10
    echo AWS profile cleared.
11
    return
David Kane's avatar
David Kane committed
12
  fi
13
14
15
16

  export AWS_DEFAULT_PROFILE=$1
  export AWS_PROFILE=$1
  export AWS_EB_PROFILE=$1
17
}
18

19
function aws_change_access_key {
20
21
  if [[ -z "$1" ]] then
    echo "usage: $0 <profile>"
22
23
    return 1
  fi
24
25
26
27
28
29
30
31
32

  echo Insert the credentials when asked.
  asp "$1"
  aws iam create-access-key
  aws configure --profile "$1"

  echo You can now safely delete the old access key running \`aws iam delete-access-key --access-key-id ID\`
  echo Your current keys are:
  aws iam list-access-keys
33
34
}

35
function aws_profiles {
36
  reply=($(grep '\[profile' "${AWS_CONFIG_FILE:-$HOME/.aws/config}"|sed -e 's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/'))
37
}
38
compctl -K aws_profiles asp aws_change_access_key
39

40

David Kane's avatar
David Kane committed
41
42
43
44
45
46
47
48
# AWS prompt

function aws_prompt_info() {
  [[ -z $AWS_PROFILE ]] && return
  echo "${ZSH_THEME_AWS_PREFIX:=<aws:}${AWS_PROFILE}${ZSH_THEME_AWS_SUFFIX:=>}"
}

if [ "$SHOW_AWS_PROMPT" != false ]; then
49
  RPROMPT='$(aws_prompt_info)'"$RPROMPT"
David Kane's avatar
David Kane committed
50
51
52
fi


53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Load awscli completions

_awscli-homebrew-installed() {
  # check if Homebrew is installed
  (( $+commands[brew] )) || return 1

  # speculatively check default brew prefix
  if [ -h /usr/local/opt/awscli ]; then
    _brew_prefix=/usr/local/opt/awscli
  else
    # ok, it is not in the default prefix
    # this call to brew is expensive (about 400 ms), so at least let's make it only once
    _brew_prefix=$(brew --prefix awscli)
  fi
}

# get aws_zsh_completer.sh location from $PATH
_aws_zsh_completer_path="$commands[aws_zsh_completer.sh]"

72
73
74
75
76
77
78
79
80
81
82
83
# otherwise check common locations
if [[ -z $_aws_zsh_completer_path ]]; then
  # Homebrew
  if _awscli-homebrew-installed; then
    _aws_zsh_completer_path=$_brew_prefix/libexec/bin/aws_zsh_completer.sh
  # Ubuntu
  elif [[ -e /usr/share/zsh/vendor-completions/_awscli ]]; then
    _aws_zsh_completer_path=/usr/share/zsh/vendor-completions/_awscli
  # RPM
  else
    _aws_zsh_completer_path=/usr/share/zsh/site-functions/aws_zsh_completer.sh
  fi
84
fi
Superbil's avatar
Superbil committed
85

86
87
[[ -r $_aws_zsh_completer_path ]] && source $_aws_zsh_completer_path
unset _aws_zsh_completer_path _brew_prefix