Terraform Apply

  1. Go to the “terraform” directory where we can find the terraform plan.
cd terraform
  1. Run the following commands, terraform plan will show us what it is going to be deployed in Azure by Terraform:
terraform init
terraform plan
  1. Now let’s deploy the environment
terraform apply --auto-approve

It will take around 10 minutes for Terraform and Azure to finish the initial deployment.