1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

feat(terraform): add new terraform and helm aliases (#11923)

This commit is contained in:
reda
2024-01-13 12:36:26 +01:00
committed by GitHub
parent 1c8dee848d
commit 15479ca5ae
4 changed files with 13 additions and 6 deletions

View File

@@ -26,6 +26,9 @@ plugins=(... terraform)
| `tfo` | `terraform output` |
| `tfp` | `terraform plan` |
| `tfv` | `terraform validate` |
| `tfs` | `terraform state` |
| `tfsh`| `terraform show` |
## Prompt function

View File

@@ -24,3 +24,5 @@ alias tfi='terraform init'
alias tfo='terraform output'
alias tfp='terraform plan'
alias tfv='terraform validate'
alias tfs='terraform state'
alias tfsh='terraform show'