mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-21 21:30:09 +00:00
feat(opentofu): add apply -auto-approve
alias (#12714)
This commit is contained in:
parent
f4423ebd09
commit
dae5a41159
2 changed files with 19 additions and 17 deletions
|
@ -16,9 +16,10 @@ plugins=(... opentofu)
|
||||||
## Aliases
|
## Aliases
|
||||||
|
|
||||||
| Alias | Command |
|
| Alias | Command |
|
||||||
|--------|-----------------------|
|
|--------|------------------------------|
|
||||||
| `tt` | `tofu` |
|
| `tt` | `tofu` |
|
||||||
| `tta` | `tofu apply` |
|
| `tta` | `tofu apply` |
|
||||||
|
| `ttaa` | `tofu apply -auto-approve` |
|
||||||
| `ttc` | `tofu console` |
|
| `ttc` | `tofu console` |
|
||||||
| `ttd` | `tofu destroy` |
|
| `ttd` | `tofu destroy` |
|
||||||
| `ttf` | `tofu fmt` |
|
| `ttf` | `tofu fmt` |
|
||||||
|
|
|
@ -29,6 +29,7 @@ function tofu_version_prompt_info() {
|
||||||
|
|
||||||
alias tt='tofu'
|
alias tt='tofu'
|
||||||
alias tta='tofu apply'
|
alias tta='tofu apply'
|
||||||
|
alias ttaa='tofu apply -auto-approve'
|
||||||
alias ttc='tofu console'
|
alias ttc='tofu console'
|
||||||
alias ttd='tofu destroy'
|
alias ttd='tofu destroy'
|
||||||
alias ttf='tofu fmt'
|
alias ttf='tofu fmt'
|
||||||
|
|
Loading…
Reference in a new issue