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

Added terraform apply auto approve alias

This commit is contained in:
Tushar Mohod 2024-09-07 13:12:37 +05:30
parent 80fa5e1376
commit ef070d44cc
2 changed files with 18 additions and 16 deletions

View file

@ -16,9 +16,10 @@ plugins=(... terraform)
## Aliases
| Alias | Command |
|--------|----------------------------|
|---------|----------------------------------|
| `tf` | `terraform` |
| `tfa` | `terraform apply` |
| `tfaa` | `terraform apply -auto-approve` |
| `tfc` | `terraform console` |
| `tfd` | `terraform destroy` |
| `tff` | `terraform fmt` |

View file

@ -17,6 +17,7 @@ function tf_version_prompt_info() {
alias tf='terraform'
alias tfa='terraform apply'
alias tfaa='terraform apply -auto-approve'
alias tfc='terraform console'
alias tfd='terraform destroy'
alias tff='terraform fmt'