mirror of
https://github.com/ohmybash/oh-my-bash.git
synced 2024-05-11 05:55:37 +00:00
aliases: Add Terraform aliases (#367)
This commit is contained in:
@ -67,3 +67,13 @@ OMB_ALIAS_PACKAGE_MANAGER_SUDO=sudo
|
|||||||
# Do not use sudo but directly run the package manager
|
# Do not use sudo but directly run the package manager
|
||||||
OMB_ALIAS_PACKAGE_MANAGER_SUDO=
|
OMB_ALIAS_PACKAGE_MANAGER_SUDO=
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## alias:terraform
|
||||||
|
|
||||||
|
| Alias | Command |
|
||||||
|
| -------- | ---------------------------- |
|
||||||
|
| `t` | `terraform` |
|
||||||
|
| `tinit` | `terraform init` |
|
||||||
|
| `tplan` | `terraform plan` |
|
||||||
|
| `tapply` | `terraform apply` |
|
||||||
|
| `tfmt` | `terraform fmt` |
|
||||||
|
10
aliases/terraform.aliases.sh
Normal file
10
aliases/terraform.aliases.sh
Normal 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'
|
Reference in New Issue
Block a user