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

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

This commit is contained in:
rohitbahekar 2023-02-21 15:53:04 +05:30 committed by GitHub
parent c50bac7b42
commit 9f9d3b7d24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

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

View file

@ -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'