0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
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 10:50:33 +02:00
alias tf='terraform'