summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/opentofu/README.md1
-rw-r--r--plugins/opentofu/opentofu.plugin.zsh1
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/opentofu/README.md b/plugins/opentofu/README.md
index cc6e94acd..56f116492 100644
--- a/plugins/opentofu/README.md
+++ b/plugins/opentofu/README.md
@@ -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` |
diff --git a/plugins/opentofu/opentofu.plugin.zsh b/plugins/opentofu/opentofu.plugin.zsh
index 79b102a74..bb65c12e3 100644
--- a/plugins/opentofu/opentofu.plugin.zsh
+++ b/plugins/opentofu/opentofu.plugin.zsh
@@ -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'