dotwryn/bin/aws/configure
2022-02-06 00:15:14 -07:00

20 lines
463 B
Bash
Executable File

#!/bin/zsh
source "$HOME/.config/wryn/env.zsh"
source $ZSH_COLOR_UTIL
#####################################################################
CONFIGURE() {
CHECK "checking for '$DOTWRYN_AWS_PROFILE' aws credentials"
grep -q "^\\[$DOTWRYN_AWS_PROFILE\\]$" "$HOME/.aws/credentials" \
&& { OK; return 0 } || WARN
USER_PROMPT "set up credentials now? [Y/n]"
READ_K yn
[[ $yn =~ ^[nN] ]] && return 1
aws --profile $DOTWRYN_AWS_PROFILE configure
}
CONFIGURE