2017-11-14 14:36:22 +00:00
|
|
|
function tf_prompt_info() {
|
2018-10-05 18:56:56 +00:00
|
|
|
# dont show 'default' workspace in home dir
|
|
|
|
[[ "$PWD" == ~ ]] && return
|
2017-11-07 15:45:25 +00:00
|
|
|
# check if in terraform dir
|
2021-03-08 09:46:42 +00:00
|
|
|
if [[ -d .terraform && -r .terraform/environment ]]; then
|
|
|
|
workspace=$(cat .terraform/environment) || return
|
2017-11-07 15:45:25 +00:00
|
|
|
echo "[${workspace}]"
|
|
|
|
fi
|
|
|
|
}
|
2020-09-30 08:50:33 +00:00
|
|
|
|
|
|
|
alias tf='terraform'
|