ohmyzsh/plugins/terraform/terraform.plugin.zsh

12 lines
318 B
Bash
Raw Normal View History

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
}
2020-09-30 08:50:33 +00:00
alias tf='terraform'