feat(terraform): add aliases for workspace management (#12845)

master
Jeconias Santos 5 months ago committed by GitHub
parent f1934d2c76
commit bd295c014f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      plugins/terraform/README.md
  2. 3
      plugins/terraform/terraform.plugin.zsh

@ -35,6 +35,9 @@ plugins=(... terraform)
| `tfs` | `terraform state` |
| `tft` | `terraform test` |
| `tfsh` | `terraform show` |
| `tfw` | `terraform workspace` |
| `tfwl` | `terraform workspace list` |
| `tfws` | `terraform workspace select` |
## Prompt function

@ -33,3 +33,6 @@ alias tfv='terraform validate'
alias tfs='terraform state'
alias tft='terraform test'
alias tfsh='terraform show'
alias tfw='terraform workspace'
alias tfwl='terraform workspace list'
alias tfws='terraform workspace select'

Loading…
Cancel
Save