Deploying Resources Using Terraform
Learn how to define, preview, and deploy cloud infrastructure using Terraform.
Understanding the Terraform workflow
When we want to employ Terraform to deploy resources, we need to take a sequence of steps. After we’ve prepared our configuration files, the major workflow is as follows:
- Initialize a working directory
- Verify the execution plan
- Apply the execution plan
- Destroy existing infrastructure
Press + to interact
Let’s consider a scenario where we’ve been tasked to set up a simple network infrastructure on AWS consisting of a VPC and a private subnet. The configuration file for this infrastructure has already been provided to us, as shown in the playground below. We’ll walk through the Terraform workflow to set up this infrastructure on AWS by following the steps given below.