Skip to content

Commit

Permalink
aliases: Add Terraform aliases (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
loafoe authored Nov 6, 2022
1 parent b8aa23b commit 1c7f6d6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions aliases/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
10 changes: 10 additions & 0 deletions aliases/terraform.aliases.sh
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 1c7f6d6

Please sign in to comment.