ohmyzsh/plugins/terraform/terraform.plugin.zsh
Maciej Lasyk 6c875f8930 Plugins: Terraform
Expanded Terraform plugin with function that can be used to show workspace name in the zsh prompt
2017-10-25 13:30:10 +02:00

7 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
}