Populate repo
This commit is contained in:
11
zsh/.oh-my-zsh/plugins/terraform/terraform.plugin.zsh
Normal file
11
zsh/.oh-my-zsh/plugins/terraform/terraform.plugin.zsh
Normal file
@ -0,0 +1,11 @@
|
||||
function tf_prompt_info() {
|
||||
# dont show 'default' workspace in home dir
|
||||
[[ "$PWD" == ~ ]] && return
|
||||
# check if in terraform dir
|
||||
if [[ -d .terraform && -r .terraform/environment ]]; then
|
||||
workspace=$(cat .terraform/environment) || return
|
||||
echo "[${workspace}]"
|
||||
fi
|
||||
}
|
||||
|
||||
alias tf='terraform'
|
Reference in New Issue
Block a user