Add support for AWS_REGION with fallback to AWS_DEFAULT_REGION (#1544)

See https://fossies.org/linux/aws-cli/CHANGELOG.rst#section-133
This commit is contained in:
elProxy 2021-08-19 09:27:05 +02:00 committed by GitHub
parent ec44300155
commit 277ff8b414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1168,8 +1168,8 @@ prompt_aws() {
fi
done
if [[ -n $AWS_DEFAULT_REGION ]]; then
typeset -g P9K_AWS_REGION=$AWS_DEFAULT_REGION
if [[ -n ${AWS_REGION:-AWS_DEFAULT_REGION} ]]; then
typeset -g P9K_AWS_REGION=${AWS_REGION:-AWS_DEFAULT_REGION}
else
local cfg=${AWS_CONFIG_FILE:-~/.aws/config}
if ! _p9k_cache_stat_get $0 $cfg; then