summaryrefslogtreecommitdiff
path: root/plugins/terraform/terraform.plugin.zsh
blob: b170f73a640f279dbdd99de9afa77bbb49d6ab5d (plain)
1
2
3
4
5
6
7
function tf_prompt_info() {
    # check if in terraform dir
    if [ -d .terraform ]; then
      workspace=$(terraform workspace show 2> /dev/null) || return
      echo "[${workspace}]"
    fi
}