浏览代码

terraform: add tf Alias (#8206)

Andrew Babichev 4 年之前
父节点
当前提交
a8828aad87
共有 2 个文件被更改,包括 4 次插入1 次删除
  1. 2 1
      plugins/terraform/README.md
  2. 2 0
      plugins/terraform/terraform.plugin.zsh

+ 2 - 1
plugins/terraform/README.md

@@ -2,7 +2,7 @@
 
 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
 
@@ -17,6 +17,7 @@ plugins=(... terraform)
 ```
 
  * 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
 

+ 2 - 0
plugins/terraform/terraform.plugin.zsh

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