2019-03-24 18:37:07 +00:00
|
|
|
# AWS profile selection
|
|
|
|
|
2013-10-09 14:42:28 +00:00
|
|
|
function agp {
|
2018-10-27 22:21:18 +00:00
|
|
|
echo $AWS_PROFILE
|
2013-10-09 14:42:28 +00:00
|
|
|
}
|
2015-09-04 19:18:32 +00:00
|
|
|
|
2013-10-09 14:42:28 +00:00
|
|
|
function asp {
|
|
|
|
export AWS_DEFAULT_PROFILE=$1
|
2015-06-09 14:52:40 +00:00
|
|
|
export AWS_PROFILE=$1
|
2019-03-24 18:46:27 +00:00
|
|
|
export AWS_EB_PROFILE=$1
|
2015-09-04 19:18:32 +00:00
|
|
|
|
2019-03-24 18:37:07 +00:00
|
|
|
if [[ -z "$1" ]]; then
|
|
|
|
echo AWS profile cleared.
|
|
|
|
fi
|
2013-10-09 14:42:28 +00:00
|
|
|
}
|
2015-09-04 19:18:32 +00:00
|
|
|
|
2014-07-30 12:59:00 +00:00
|
|
|
function aws_change_access_key {
|
|
|
|
if [[ "x$1" == "x" ]] then
|
|
|
|
echo "usage: $0 <profile.name>"
|
|
|
|
return 1
|
|
|
|
else
|
|
|
|
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
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-10-09 14:42:28 +00:00
|
|
|
function aws_profiles {
|
2018-12-31 19:15:56 +00:00
|
|
|
reply=($(grep '\[profile' "${AWS_CONFIG_FILE:-$HOME/.aws/config}"|sed -e 's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/'))
|
2013-10-09 14:42:28 +00:00
|
|
|
}
|
2014-07-30 12:59:00 +00:00
|
|
|
compctl -K aws_profiles asp aws_change_access_key
|
2014-08-30 16:20:28 +00:00
|
|
|
|
2019-03-23 18:52:31 +00:00
|
|
|
|
2019-03-24 18:37:07 +00:00
|
|
|
# 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
|
|
|
|
export RPROMPT='$(aws_prompt_info)'"$RPROMPT"
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2019-03-23 18:52:31 +00:00
|
|
|
# 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
|
2017-11-07 16:03:54 +00:00
|
|
|
_aws_zsh_completer_path=$_brew_prefix/libexec/bin/aws_zsh_completer.sh
|
2019-03-23 18:52:31 +00:00
|
|
|
else
|
|
|
|
_aws_zsh_completer_path=/usr/share/zsh/site-functions/aws_zsh_completer.sh
|
2014-08-30 16:20:28 +00:00
|
|
|
fi
|
2014-12-15 16:17:58 +00:00
|
|
|
|
2019-03-23 18:52:31 +00:00
|
|
|
[[ -r $_aws_zsh_completer_path ]] && source $_aws_zsh_completer_path
|
|
|
|
unset _aws_zsh_completer_path _brew_prefix
|