Getting started with terraform and AWS
Biswambar Pradhan
Installation
To use Terraform you will need to install it. HashiCorp distributes Terraform as a binary package. You can also install Terraform using popular package managers.
Windows
Download Windows binary from source and install manually by running terraform.exe file. In Windows terrform can also be installed using Chocoloate package manager.
choco install terraformMac using homebrew
brew tap hashicorp/tapinstall terraform
brew install hashicorp/tap/terraformVerify installation
Verify that the installation worked by opening a new terminal session and listing Terraform’s available subcommands.
terraform -helpCreate IAM User in console
-
Log in to aws console and open IAM page IAM
-
Open Users tab and select Create User.

-
Go next. In Set permissions tab select Attach policies directly and search for AdministratorAccess in the list and then click Select User

-
Go to the selected User and select Security Credentials Tab. Select Create Access Keys and select Command Line Interface (CLI) and go next

