aws.plugin.zsh 1.29 KB
Newer Older
1
function agp {
2
  echo $AWS_PROFILE
3
}
4

5
function asp {
6
  local rprompt=${RPROMPT/<aws:$AWS_PROFILE>/}
7

8
  export AWS_DEFAULT_PROFILE=$1
9
  export AWS_PROFILE=$1
10

11
  export RPROMPT="<aws:$AWS_PROFILE>$rprompt"
12
}
13

14
function aws_profiles {
15
  reply=($(grep '\[profile' "${AWS_CONFIG_FILE:-$HOME/.aws/config}"|sed -e 's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/'))
16
17
}
compctl -K aws_profiles asp
18

19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

# 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]"

# otherwise check if installed via Homebrew
if [[ -z $_aws_zsh_completer_path ]] && _awscli-homebrew-installed; then
41
  _aws_zsh_completer_path=$_brew_prefix/libexec/bin/aws_zsh_completer.sh
42
43
else
  _aws_zsh_completer_path=/usr/share/zsh/site-functions/aws_zsh_completer.sh
44
fi
Superbil's avatar
Superbil committed
45

46
47
[[ -r $_aws_zsh_completer_path ]] && source $_aws_zsh_completer_path
unset _aws_zsh_completer_path _brew_prefix