diff options
| author | Jeconias Santos <jeconiass2009@hotmail.com> | 2025-10-22 14:12:22 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-22 19:12:22 +0200 |
| commit | bd295c014f47ac2462d6145f87ae627ae765860f (patch) | |
| tree | 20c2965c3f61e9b0c9ea1821ccf0eb3a2503e53e | |
| parent | f1934d2c769e43d87fd6b2138bed90ed6b1455fe (diff) | |
| download | zsh-bd295c014f47ac2462d6145f87ae627ae765860f.tar.gz zsh-bd295c014f47ac2462d6145f87ae627ae765860f.tar.bz2 zsh-bd295c014f47ac2462d6145f87ae627ae765860f.zip | |
feat(terraform): add aliases for workspace management (#12845)
| -rw-r--r-- | plugins/terraform/README.md | 3 | ||||
| -rw-r--r-- | plugins/terraform/terraform.plugin.zsh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/plugins/terraform/README.md b/plugins/terraform/README.md index 6c139ac51..48fdae282 100644 --- a/plugins/terraform/README.md +++ b/plugins/terraform/README.md @@ -35,6 +35,9 @@ plugins=(... terraform) | `tfs` | `terraform state` | | `tft` | `terraform test` | | `tfsh` | `terraform show` | +| `tfw` | `terraform workspace` | +| `tfwl` | `terraform workspace list` | +| `tfws` | `terraform workspace select` | ## Prompt function diff --git a/plugins/terraform/terraform.plugin.zsh b/plugins/terraform/terraform.plugin.zsh index 0982fa193..b0054d56a 100644 --- a/plugins/terraform/terraform.plugin.zsh +++ b/plugins/terraform/terraform.plugin.zsh @@ -33,3 +33,6 @@ alias tfv='terraform validate' alias tfs='terraform state' alias tft='terraform test' alias tfsh='terraform show' +alias tfw='terraform workspace' +alias tfwl='terraform workspace list' +alias tfws='terraform workspace select' |
