Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The first step to using Terraform is typically to configure the provider(s) you want to use. The template is already configured using the environment variables. 

For example, 

 export TF_VAR_aws_region="us-east-2"

This tells Terraform that you are going to be using the AWS provider and that you wish to deploy your infrastructure in the us-east-2 region.

...