mirror of
https://github.com/KevinMidboe/dotfiles.git
synced 2025-10-29 17:40:19 +00:00
8 lines
195 B
Bash
8 lines
195 B
Bash
function tf_prompt_info() {
|
|
# check if in terraform dir
|
|
if [ -d .terraform ]; then
|
|
workspace=$(terraform workspace show 2> /dev/null) || return
|
|
echo "[${workspace}]"
|
|
fi
|
|
}
|