terraform.plugin.zsh 195 Bytes
Newer Older
1
function tf_prompt_info() {
Maciej Lasyk's avatar
Maciej Lasyk committed
2
3
4
5
6
7
    # check if in terraform dir
    if [ -d .terraform ]; then
      workspace=$(terraform workspace show 2> /dev/null) || return
      echo "[${workspace}]"
    fi
}