Browse Source

feat(terraform): add `tfc` alias (#10815)

rohitbahekar 2 years ago
parent
commit
9f9d3b7d24
2 changed files with 2 additions and 0 deletions
  1. 1 0
      plugins/terraform/README.md
  2. 1 0
      plugins/terraform/terraform.plugin.zsh

+ 1 - 0
plugins/terraform/README.md

@@ -19,6 +19,7 @@ plugins=(... terraform)
 | ----- | -------------------- |
 | `tf`  | `terraform`          |
 | `tfa` | `terraform apply`    |
+| `tfc` | `terraform console`  |
 | `tfd` | `terraform destroy`  |
 | `tff` | `terraform fmt`      |
 | `tfi` | `terraform init`     |

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

@@ -10,6 +10,7 @@ function tf_prompt_info() {
 
 alias tf='terraform'
 alias tfa='terraform apply'
+alias tfc='terraform console'
 alias tfd='terraform destroy'
 alias tff='terraform fmt'
 alias tfi='terraform init'