summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/terraform/README.md27
-rw-r--r--plugins/terraform/terraform.plugin.zsh1
2 files changed, 15 insertions, 13 deletions
diff --git a/plugins/terraform/README.md b/plugins/terraform/README.md
index 135fd78ef..2b535517c 100644
--- a/plugins/terraform/README.md
+++ b/plugins/terraform/README.md
@@ -15,19 +15,20 @@ plugins=(... terraform)
## Aliases
-| Alias | Command |
-| ----- | -------------------- |
-| `tf` | `terraform` |
-| `tfa` | `terraform apply` |
-| `tfc` | `terraform console` |
-| `tfd` | `terraform destroy` |
-| `tff` | `terraform fmt` |
-| `tfi` | `terraform init` |
-| `tfo` | `terraform output` |
-| `tfp` | `terraform plan` |
-| `tfv` | `terraform validate` |
-| `tfs` | `terraform state` |
-| `tfsh`| `terraform show` |
+| Alias | Command |
+| ------ | -------------------- |
+| `tf` | `terraform` |
+| `tfa` | `terraform apply` |
+| `tfc` | `terraform console` |
+| `tfd` | `terraform destroy` |
+| `tff` | `terraform fmt` |
+| `tfi` | `terraform init` |
+| `tfo` | `terraform output` |
+| `tfp` | `terraform plan` |
+| `tfv` | `terraform validate` |
+| `tfs` | `terraform state` |
+| `tft` | `terraform test` |
+| `tfsh` | `terraform show` |
## Prompt function
diff --git a/plugins/terraform/terraform.plugin.zsh b/plugins/terraform/terraform.plugin.zsh
index f66a8eac9..8ef392efd 100644
--- a/plugins/terraform/terraform.plugin.zsh
+++ b/plugins/terraform/terraform.plugin.zsh
@@ -25,4 +25,5 @@ alias tfo='terraform output'
alias tfp='terraform plan'
alias tfv='terraform validate'
alias tfs='terraform state'
+alias tft='terraform test'
alias tfsh='terraform show'