2017-11-14 14:36:22 +00:00
|
|
|
function tf_prompt_info() {
|
2017-11-17 14:27:15 +00:00
|
|
|
RESET="%{${reset_color}%}"
|
|
|
|
|
2017-11-07 15:45:25 +00:00
|
|
|
# check if in terraform dir
|
|
|
|
if [ -d .terraform ]; then
|
|
|
|
workspace=$(terraform workspace show 2> /dev/null) || return
|
2017-11-17 14:27:15 +00:00
|
|
|
TF_INFO="$RESET%{$fg_bold[blue]%}tf:(%{$fg_bold[magenta]%}$workspace%{$fg_bold[blue]%})$RESET "
|
|
|
|
echo "$TF_INFO"
|
2017-11-07 15:45:25 +00:00
|
|
|
fi
|
|
|
|
}
|