conf2/zsh/.oh-my-zsh/plugins/terraform/terraform.plugin.zsh

10 lines
275 B
Bash
Raw Normal View History

2019-01-12 15:47:23 +00:00
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
}