Browse Source

feat(terraform): add new terraform and helm aliases (#11923)

reda 3 months ago
parent
commit
15479ca5ae

+ 7 - 6
plugins/helm/README.md

@@ -10,9 +10,10 @@ plugins=(... helm)
 
 ## Aliases
 
-| Alias | Full command |
-| ----- | ------------ |
-| h     | helm         |
-| hin   | helm install |
-| hse   | helm search  |
-| hup   | helm upgrade |
+| Alias |  Full command  |
+| ----- | -------------- |
+| h     | helm           |
+| hin   | helm install   |
+| hun   | helm uninstall |
+| hse   | helm search    |
+| hup   | helm upgrade   |

+ 1 - 0
plugins/helm/helm.plugin.zsh

@@ -14,5 +14,6 @@ fi
 
 alias h='helm'
 alias hin='helm install'
+alias hun='helm uninstall'
 alias hse='helm search'
 alias hup='helm upgrade'

+ 3 - 0
plugins/terraform/README.md

@@ -26,6 +26,9 @@ plugins=(... terraform)
 | `tfo` | `terraform output`   |
 | `tfp` | `terraform plan`     |
 | `tfv` | `terraform validate` |
+| `tfs` | `terraform state`    |
+| `tfsh`| `terraform show`    |
+
 
 ## Prompt function
 

+ 2 - 0
plugins/terraform/terraform.plugin.zsh

@@ -24,3 +24,5 @@ alias tfi='terraform init'
 alias tfo='terraform output'
 alias tfp='terraform plan'
 alias tfv='terraform validate'
+alias tfs='terraform state'
+alias tfsh='terraform show'