The DevOps movement includes a series of IT engineering tactics aimed at shortening the amount of time it takes to make changes to software design and deployment. One of these tactics is to leverage technology to write a plan that contains deployment specifications ready to be orchestrated in the cloud or on-premises. Terraform is a tool that allows you to build and manage infrastructure safely and efficiently. This includes low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS entries, SaaS features, etc. Terraform can manage both existing service providers and custom in-house solutions. In this course, you will learn about how to use Terraform to define and to manage your Cloud or on-premise infrastructure
Infrastructure as code is a concept that allows you to:
Terraform is an IaC tool
Why choosing Terraform as IaC tool ?
What is the Terraform workflow?
Initializing the Terraform working directory
Before you start coding your infrastructure, you need to understand how to initialize Terraform inside your working directory
You have to enter the following command to get started:
terraform init
This command will:
Terraform key concepts : Plan, Apply and Destroy
Resource addressing in Terraform: Understanding Terraform Code
Understanding the provider configuration
The provider block lets you define your provider configurations
Understanding a resource block definition
A resource block defines a resource that will be created from scratch and will be managed by Terraform code
Resource address is: aws_instance.web
Understanding a data source block definition
A data source block give the possibility to get informations of resources that already exists in the infrastructure (eg: getting the public IP address of an existing VM, etc..)
Data source address is: data.aws_instance.my-vm
Terraform configuration files uses .tf extension
yum install terraform
apt install terraform
Providers are Terraform's way of abstracting integrations with API control layer of the infrastructure vendors.
Terraform, by default, looks for Providers in the Terraform providers registry https://registry.terraform.io/browse/providers
Providers are plugins. They are released on a separate rhythm from Terraform itself, and each provider has its own series of version numbers.
You can write your own Terraform provider as well.
Terraform finds and installs providers when initializing working directory via terraform init
command.
As a best practice Providers should be pegged down to a specific version, so that any changes across provider version doesn't break your Terraform code.
Provider definition example in a file provider.tf
. You can choose any other filename.
provider "aws" {
region = "eu-west-1"
version = "3.69.0"
}
By executing the command terraform init
,Terraform will download the required files for this provider from the default Terraform registry.
You can find all of the available providers list on the Terraform registry here: https://registry.terraform.io/browse/providers