aliases: Add Terraform aliases (#367)

This commit is contained in:
Andy Lo-A-Foe 2022-11-06 04:11:39 +01:00 committed by GitHub
parent b8aa23b7f3
commit 1c7f6d67ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View File

@ -67,3 +67,13 @@ OMB_ALIAS_PACKAGE_MANAGER_SUDO=sudo
# Do not use sudo but directly run the package manager
OMB_ALIAS_PACKAGE_MANAGER_SUDO=
```
## alias:terraform
| Alias | Command |
| -------- | ---------------------------- |
| `t` | `terraform` |
| `tinit` | `terraform init` |
| `tplan` | `terraform plan` |
| `tapply` | `terraform apply` |
| `tfmt` | `terraform fmt` |

View File

@ -0,0 +1,10 @@
# Aliases
# (sorted alphabetically)
#
alias t='terraform'
alias tapply='terraform apply'
alias tfmt='terraform fmt'
alias tinit='terraform init'
alias tplan='terraform plan'