From ee24737e9da4a02f216d44237fbb0c8e9d866446 Mon Sep 17 00:00:00 2001 From: ptavares Date: Mon, 11 Dec 2023 18:28:07 +0100 Subject: [PATCH] :pencil2: Update ReadMe --- README.md | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5764f6e..fb4eacc 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,42 @@ # PowerShell Terraform Tools [![license](https://img.shields.io/github/license/ptavares/powershell-terraform-tools)](./LICENSE) - ![PowerShell Gallery Version (including pre-releases)](https://img.shields.io/powershellgallery/v/terraform-tools) - ![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/terraform-tools) ## Description -A [PowerShell](https://microsoft.com/powershell) module for [Terraform](https://www.terraform.io/), a tool from [Hashicorp](https://www.hashicorp.com/) for managing infrastructure safely and efficiently. +A [PowerShell](https://www.powershellgallery.com/packages/terraform-tools/) module for [Terraform](https://www.terraform.io/), a tool from [Hashicorp](https://www.hashicorp.com/) for managing infrastructure safely and efficiently. -It will install the following [Terraform](https://www.terraform.io/) tools : +It will install the following [Terraform](https://www.terraform.io/) tools : +- [terraform-switcher](https://github.com/warrensbox/terraform-switcher) - [terraform-docs](https://github.com/terraform-docs/terraform-docs) - [tfsec](https://github.com/aquasecurity/tfsec) - [tflint](https://github.com/terraform-linters/tflint) - [tfautomv](https://github.com/busser/tfautomv) + It also provides some useful terraform aliases for everyday use. ## Table of content ## ⚙️ Installation -Install from [PowerShell Gallery](https://www.powershellgallery.com/packages) +Install or update from [PowerShell Gallery](https://www.powershellgallery.com/packages/terraform-tools/) + +- Install ```powershell Install-Module terraform-tools -Scope CurrentUser -AllowClobber ``` +- Update + +```powershell +Install-Module terraform-tools -Scope CurrentUser -AllowClobber -Force +``` + Or from [Scoop](https://github.com/ScoopInstaller/Extras/blob/master/bucket/git-aliases.json) ```powershell @@ -67,6 +75,7 @@ Now you can use wanted tool or uses wanted [aliases](#aliases). tfswitch ``` +If you facing issue with current version of [tfswitch](https://github.com/warrensbox/terraform-switcher), have a look at my [fork](https://github.com/ptavares/terraform-switcher) ---