0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

terraform: add tf Alias (#8206)

This commit is contained in:
Andrew Babichev 2020-09-30 11:50:33 +03:00 committed by GitHub
parent 71cc861806
commit a8828aad87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -2,7 +2,7 @@
Plugin for Terraform, a tool from Hashicorp for managing infrastructure safely and efficiently. Plugin for Terraform, a tool from Hashicorp for managing infrastructure safely and efficiently.
Current as of Terraform v0.11.7 Current as of Terraform v0.13
### Requirements ### Requirements
@ -17,6 +17,7 @@ plugins=(... terraform)
``` ```
* Type `terraform` into your prompt and hit `TAB` to see available completion options * Type `terraform` into your prompt and hit `TAB` to see available completion options
* Type `tf` into your prompt as a short alias to `terraform`
### Expanding ZSH prompt with current Terraform workspace name ### Expanding ZSH prompt with current Terraform workspace name

View file

@ -7,3 +7,5 @@ function tf_prompt_info() {
echo "[${workspace}]" echo "[${workspace}]"
fi fi
} }
alias tf='terraform'