blob: d727c1ee0062a5e9c2b57f888bee583a93e5cd27 (
plain)
1
2
3
4
5
6
7
8
9
|
function tf_prompt_info() {
# dont show 'default' workspace in home dir
[[ "$PWD" == ~ ]] && return
# check if in terraform dir
if [ -d .terraform ]; then
workspace=$(terraform workspace show 2> /dev/null) || return
echo "[${workspace}]"
fi
}
|