Skip to main content

Posts

Showing posts from October, 2019

Terraform in 10 mins

Terraform is  "infrastructure-as-code" and there is a list of many tools over the internet to do your job: Puppet SaltStack Chef Ansible CloudFormation Terraform can manage existing and popular service providers as well as custom in-house solutions. Configuration files describe to Terraform the components needed to run a single application or your entire datacenter. Setup: Download terraform from ->  Terraform Follow steps given in the link to setup your machine ->  Install First Terraform Script: Create new file example.tf,  here .tf is extension of terraform files If you don't have an AWS account, create one now. I will be using resources which qualify under the AWS free-tier, meaning it will be free.  If you already have an AWS account, you may be charged some amount of money, but it shouldn't be more than a few rupees at most. once you have created new AWS account then go ahead and install AWS-CLI from...