2014-08-30 17:20:28 +01:00
|
|
|
_homebrew-installed() {
|
|
|
|
type brew &> /dev/null
|
|
|
|
}
|
|
|
|
|
|
|
|
_awscli-homebrew-installed() {
|
2014-09-03 12:01:29 -07:00
|
|
|
brew list awscli &> /dev/null
|
2014-08-30 17:20:28 +01:00
|
|
|
}
|
|
|
|
|
2013-10-09 16:42:28 +02:00
|
|
|
export AWS_HOME=~/.aws
|
|
|
|
|
|
|
|
function agp {
|
|
|
|
echo $AWS_DEFAULT_PROFILE
|
|
|
|
}
|
|
|
|
function asp {
|
|
|
|
export AWS_DEFAULT_PROFILE=$1
|
2015-06-09 16:52:40 +02:00
|
|
|
export AWS_PROFILE=$1
|
|
|
|
export RPROMPT="<aws:$AWS_DEFAULT_PROFILE>$RPROMPT"
|
2013-10-09 16:42:28 +02:00
|
|
|
}
|
|
|
|
function aws_profiles {
|
|
|
|
reply=($(grep profile $AWS_HOME/config|sed -e 's/.*profile \([a-zA-Z0-9_-]*\).*/\1/'))
|
|
|
|
}
|
|
|
|
|
|
|
|
compctl -K aws_profiles asp
|
2014-08-30 17:20:28 +01:00
|
|
|
|
|
|
|
if _homebrew-installed && _awscli-homebrew-installed ; then
|
2014-12-01 12:29:59 -08:00
|
|
|
_aws_zsh_completer_path=$(brew --prefix awscli)/libexec/bin/aws_zsh_completer.sh
|
2014-08-30 17:20:28 +01:00
|
|
|
else
|
2014-12-16 00:17:58 +08:00
|
|
|
_aws_zsh_completer_path=$(which aws_zsh_completer.sh)
|
2014-08-30 17:20:28 +01:00
|
|
|
fi
|
2014-12-16 00:17:58 +08:00
|
|
|
|
|
|
|
[ -x $_aws_zsh_completer_path ] && source $_aws_zsh_completer_path
|
|
|
|
unset _aws_zsh_completer_path
|