Files
dotfiles/zsh/.oh-my-zsh/plugins/terraform/terraform.plugin.zsh
Christian Nieves 76a6480b62 Populate repo
2022-04-19 15:50:47 +00:00

12 lines
318 B
Bash

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