terraform.plugin.zsh 318 Bytes
Newer Older
1
function tf_prompt_info() {
2
3
    # dont show 'default' workspace in home dir
    [[ "$PWD" == ~ ]] && return
Maciej Lasyk's avatar
Maciej Lasyk committed
4
    # check if in terraform dir
5
6
    if [[ -d .terraform && -r .terraform/environment  ]]; then
      workspace=$(cat .terraform/environment) || return
Maciej Lasyk's avatar
Maciej Lasyk committed
7
8
9
      echo "[${workspace}]"
    fi
}
10
11

alias tf='terraform'