mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-14 01:40:09 +00:00
feat(opentofu): add destroy -auto-approve
alias (#12719)
This commit is contained in:
parent
00b9b62385
commit
7ce26a810d
2 changed files with 2 additions and 0 deletions
|
@ -22,6 +22,7 @@ plugins=(... opentofu)
|
|||
| `ttaa` | `tofu apply -auto-approve` |
|
||||
| `ttc` | `tofu console` |
|
||||
| `ttd` | `tofu destroy` |
|
||||
| `ttd!` | `tofu destroy -auto-approve` |
|
||||
| `ttf` | `tofu fmt` |
|
||||
| `ttfr` | `tofu fmt -recursive` |
|
||||
| `tti` | `tofu init` |
|
||||
|
|
|
@ -32,6 +32,7 @@ alias tta='tofu apply'
|
|||
alias ttaa='tofu apply -auto-approve'
|
||||
alias ttc='tofu console'
|
||||
alias ttd='tofu destroy'
|
||||
alias ttd!='tofu destroy -auto-approve'
|
||||
alias ttf='tofu fmt'
|
||||
alias ttfr='tofu fmt -recursive'
|
||||
alias tti='tofu init'
|
||||
|
|
Loading…
Reference in a new issue