blob: 997241c9aec6d40ec8f49b5e2e927908c67af56b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
function tf_prompt_info() {
# dont show 'default' workspace in home dir
[[ "$PWD" == ~ ]] && return
# check if in terraform dir
if [[ -d .terraform && -r .terraform/environment ]]; then
workspace=$(cat .terraform/environment) || return
echo "[${workspace}]"
fi
}
alias tf='terraform'
|