Posts

Showing posts from May, 2021

Terraform Basics - To get Started

Image
Terraform – Step by Step Pre-requisites Link to download VS Code: https://code.visualstudio.com Link for the vscode terrafor plugin: https://marketplace.visualstudio.com/items?itemName=HashiCorp.terraform IAM USER with Administrator access just for learning purpose.  Install AWS CLI - https://aws.amazon.com/cli/  How to install Chocolatey and Terraform? Install Chocolatey : https://chocolatey.org/install Open Windows Powershell and Run as administrator, See screenshot below: Run Command Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) Once installed, type choco and enter you can see the latest version of chocolatey Install Terraform Install terraform using command -> choco install terraform (Run on windows power shell) https://learn.hashicorp.com/tutorials/terraform/i