mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 13:21:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			921 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			921 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
function tf_prompt_info() {
 | 
						|
  # dont show 'default' workspace in home dir
 | 
						|
  [[ "$PWD" != ~ ]] || return
 | 
						|
  # check if in terraform dir and file exists
 | 
						|
  [[ -d .terraform && -r .terraform/environment ]] || return
 | 
						|
 | 
						|
  local workspace="$(< .terraform/environment)"
 | 
						|
  echo "${ZSH_THEME_TF_PROMPT_PREFIX-[}${workspace:gs/%/%%}${ZSH_THEME_TF_PROMPT_SUFFIX-]}"
 | 
						|
}
 | 
						|
 | 
						|
function tf_version_prompt_info() {
 | 
						|
    local terraform_version
 | 
						|
    terraform_version=$(terraform --version | head -n 1 | cut -d ' ' -f 2)
 | 
						|
    echo "${ZSH_THEME_TF_VERSION_PROMPT_PREFIX-[}${terraform_version:gs/%/%%}${ZSH_THEME_TF_VERSION_PROMPT_SUFFIX-]}"
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
alias tf='terraform'
 | 
						|
alias tfa='terraform apply'
 | 
						|
alias tfc='terraform console'
 | 
						|
alias tfd='terraform destroy'
 | 
						|
alias tff='terraform fmt'
 | 
						|
alias tfi='terraform init'
 | 
						|
alias tfo='terraform output'
 | 
						|
alias tfp='terraform plan'
 | 
						|
alias tfv='terraform validate'
 | 
						|
alias tfs='terraform state'
 | 
						|
alias tfsh='terraform show'
 |