(feat) terraform: add auto-approve while destroy

This commit is contained in:
za 2024-10-01 14:26:57 +07:00
commit e2575ff722
No known key found for this signature in database
GPG key ID: A9F471412BC97FF4
2 changed files with 2 additions and 0 deletions

View file

@ -22,6 +22,7 @@ plugins=(... terraform)
| `tfaa` | `terraform apply -auto-approve` |
| `tfc` | `terraform console` |
| `tfd` | `terraform destroy` |
| `tfda` | `terraform destroy -auto-approve`|
| `tff` | `terraform fmt` |
| `tffr` | `terraform fmt -recursive` |
| `tfi` | `terraform init` |

View file

@ -20,6 +20,7 @@ alias tfa='terraform apply'
alias tfaa='terraform apply -auto-approve'
alias tfc='terraform console'
alias tfd='terraform destroy'
alias tfda='terraform destroy -auto-approve'
alias tff='terraform fmt'
alias tffr='terraform fmt -recursive'
alias tfi='terraform init'