dotfiles/dot_oh-my-zsh/plugins/terraform/terraform.plugin.zsh
2020-11-18 19:19:31 -06:00

11 lines
297 B
Bash

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
}
alias tf='terraform'