dotfiles/dot_oh-my-zsh/plugins/terraform/terraform.plugin.zsh

12 lines
297 B
Bash
Raw Normal View History

2020-06-15 10:31:33 +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
}
2020-11-19 01:19:31 +00:00
alias tf='terraform'