8 lines
202 B
Bash
8 lines
202 B
Bash
|
function terraform_prompt_info() {
|
||
|
# check if in terraform dir
|
||
|
if [ -d .terraform ]; then
|
||
|
workspace=$(terraform workspace show 2> /dev/null) || return
|
||
|
echo "[${workspace}]"
|
||
|
fi
|
||
|
}
|