terraform.plugin.zsh 202 Bytes
Newer Older
Maciej Lasyk's avatar
Maciej Lasyk committed
1
2
3
4
5
6
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
}