feat(aws): load profiles from credentials file (#11196)

Fixes #8472
master
Noam Cohen 3 years ago committed by GitHub
parent ec0003f2fa
commit eb2147c715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      plugins/aws/aws.plugin.zsh

@ -146,6 +146,7 @@ function aws_change_access_key() {
}
function aws_profiles() {
aws --no-cli-pager configure list-profiles 2> /dev/null && return
[[ -r "${AWS_CONFIG_FILE:-$HOME/.aws/config}" ]] || return 1
grep --color=never -Eo '\[.*\]' "${AWS_CONFIG_FILE:-$HOME/.aws/config}" | sed -E 's/^[[:space:]]*\[(profile)?[[:space:]]*([^[:space:]]+)\][[:space:]]*$/\2/g'
}

Loading…
Cancel
Save