oh-my-zsh/plugins/terraform/terraform.plugin.zsh
Maciej Lasyk d12c2ea4e8 Plugins: Terraform (#6373)
Expanded Terraform plugin with function that can be used to show workspace name in the zsh prompt
2017-11-07 07:45:25 -08:00

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
}