mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
feat(terraform): add aliases for workspace management (#12845)
This commit is contained in:
parent
f1934d2c76
commit
bd295c014f
2 changed files with 6 additions and 0 deletions
|
|
@ -35,6 +35,9 @@ plugins=(... terraform)
|
||||||
| `tfs` | `terraform state` |
|
| `tfs` | `terraform state` |
|
||||||
| `tft` | `terraform test` |
|
| `tft` | `terraform test` |
|
||||||
| `tfsh` | `terraform show` |
|
| `tfsh` | `terraform show` |
|
||||||
|
| `tfw` | `terraform workspace` |
|
||||||
|
| `tfwl` | `terraform workspace list` |
|
||||||
|
| `tfws` | `terraform workspace select` |
|
||||||
|
|
||||||
## Prompt function
|
## Prompt function
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,3 +33,6 @@ alias tfv='terraform validate'
|
||||||
alias tfs='terraform state'
|
alias tfs='terraform state'
|
||||||
alias tft='terraform test'
|
alias tft='terraform test'
|
||||||
alias tfsh='terraform show'
|
alias tfsh='terraform show'
|
||||||
|
alias tfw='terraform workspace'
|
||||||
|
alias tfwl='terraform workspace list'
|
||||||
|
alias tfws='terraform workspace select'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue