Plugins: Terraform (#6373)
Expanded Terraform plugin with function that can be used to show workspace name in the zsh promptmaster
parent
46062e25cc
commit
d12c2ea4e8
2 changed files with 17 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||||||
|
function terraform_prompt_info() { |
||||||
|
# check if in terraform dir |
||||||
|
if [ -d .terraform ]; then |
||||||
|
workspace=$(terraform workspace show 2> /dev/null) || return |
||||||
|
echo "[${workspace}]" |
||||||
|
fi |
||||||
|
} |
||||||
Loading…
Reference in new issue