Unverified Commit a8828aad authored by Andrew Babichev's avatar Andrew Babichev Committed by GitHub
Browse files

terraform: add tf Alias (#8206)

parent 71cc8618
...@@ -2,7 +2,7 @@ ...@@ -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) ...@@ -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
......
...@@ -7,3 +7,5 @@ function tf_prompt_info() { ...@@ -7,3 +7,5 @@ function tf_prompt_info() {
echo "[${workspace}]" echo "[${workspace}]"
fi fi
} }
alias tf='terraform'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment