2019-05-28 13:33:02 +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
|
|
|
|
2019-05-26 10:31:37 +00:00
|
|
|
# AWS profile selection
|
2019-05-28 13:33:02 +00:00
|
|
|
function asp() {
|
2019-03-24 18:37:07 +00:00
|
|
|
if [[ -z "$1" ]]; then
|
2019-05-10 15:28:31 +00:00
|
|
|
unset AWS_DEFAULT_PROFILE AWS_PROFILE AWS_EB_PROFILE
|
2019-03-24 18:37:07 +00:00
|
|
|
echo AWS profile cleared.
|
2019-05-10 15:28:31 +00:00
|
|
|
return
|
2019-03-24 18:37:07 +00:00
|
|
|
fi
|
2019-05-10 15:28:31 +00:00
|
|
|
|
2020-01-30 12:31:33 +00:00
|
|
|
local -a available_profiles
|
|
|
|
available_profiles=($(aws_profiles))
|
2019-05-26 10:31:37 +00:00
|
|
|
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
|
|
|
|
|
2019-05-10 15:28:31 +00:00
|
|
|
export AWS_DEFAULT_PROFILE=$1
|
|
|
|
export AWS_PROFILE=$1
|
|
|
|
export AWS_EB_PROFILE=$1
|
2013-10-09 14:42:28 +00:00
|
|
|
}
|
2015-09-04 19:18:32 +00:00
|
|
|
|
2019-05-28 13:33:02 +00:00
|
|
|
function aws_change_access_key() {
|
2019-05-26 10:31:37 +00:00
|
|
|
if [[ -z "$1" ]]; then
|
2019-03-23 19:56:55 +00:00
|
|
|
echo "usage: $0 <profile>"
|
2014-07-30 12:59:00 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2019-03-23 19:56:55 +00:00
|
|
|
|
|
|
|
echo Insert the credentials when asked.
|
2019-05-26 10:31:37 +00:00
|
|
|
asp "$1" || return 1
|
2020-04-26 10:28:24 +00:00
|
|
|
AWS_PAGER="" aws iam create-access-key
|
|
|
|
AWS_PAGER="" aws configure --profile "$1"
|
2019-03-23 19:56:55 +00:00
|
|
|
|
|
|
|
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:
|
2020-04-26 10:28:24 +00:00
|
|
|
AWS_PAGER="" aws iam list-access-keys
|
2014-07-30 12:59:00 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 13:33:02 +00:00
|
|
|
function aws_profiles() {
|
2019-05-25 08:24:43 +00:00
|
|
|
[[ -r "${AWS_CONFIG_FILE:-$HOME/.aws/config}" ]] || return 1
|
2020-07-09 08:43:59 +00:00
|
|
|
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-08-30 16:20:28 +00:00
|
|
|
|
2019-05-28 13:33:02 +00:00
|
|
|
function _aws_profiles() {
|
2019-05-26 10:31:37 +00:00
|
|
|
reply=($(aws_profiles))
|
|
|
|
}
|
|
|
|
compctl -K _aws_profiles asp aws_change_access_key
|
2019-03-23 18:52:31 +00:00
|
|
|
|
2019-03-24 18:37:07 +00:00
|
|
|
# AWS prompt
|
2019-05-28 13:33:02 +00:00
|
|
|
function aws_prompt_info() {
|
2019-03-24 18:37:07 +00:00
|
|
|
[[ -z $AWS_PROFILE ]] && return
|
|
|
|
echo "${ZSH_THEME_AWS_PREFIX:=<aws:}${AWS_PROFILE}${ZSH_THEME_AWS_SUFFIX:=>}"
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ "$SHOW_AWS_PROMPT" != false ]; then
|
2019-04-09 19:07:42 +00:00
|
|
|
RPROMPT='$(aws_prompt_info)'"$RPROMPT"
|
2019-03-24 18:37:07 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2019-03-23 18:52:31 +00:00
|
|
|
# Load awscli completions
|
|
|
|
|
2020-03-05 16:13:46 +00:00
|
|
|
# AWS CLI v2 comes with its own autocompletion. Check if that is there, otherwise fall back
|
2020-07-18 17:06:08 +00:00
|
|
|
if command -v aws_completer &> /dev/null; then
|
2020-03-05 16:13:46 +00:00
|
|
|
complete -C aws_completer aws
|
|
|
|
else
|
|
|
|
function _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 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
|
2020-03-09 16:07:34 +00:00
|
|
|
# NixOS
|
|
|
|
elif [[ -e "${commands[aws]:P:h:h}/share/zsh/site-functions/aws_zsh_completer.sh" ]]; then
|
|
|
|
_aws_zsh_completer_path="${commands[aws]:P:h:h}/share/zsh/site-functions/aws_zsh_completer.sh"
|
2020-03-05 16:13:46 +00:00
|
|
|
# RPM
|
|
|
|
else
|
|
|
|
_aws_zsh_completer_path=/usr/share/zsh/site-functions/aws_zsh_completer.sh
|
|
|
|
fi
|
2019-03-23 18:52:31 +00:00
|
|
|
fi
|
|
|
|
|
2020-03-05 16:13:46 +00:00
|
|
|
[[ -r $_aws_zsh_completer_path ]] && source $_aws_zsh_completer_path
|
|
|
|
unset _aws_zsh_completer_path _brew_prefix
|
2014-08-30 16:20:28 +00:00
|
|
|
fi
|