August 2019
Beginner
608 pages
16h 7m
English
We keep a providers.tf file to define some basic variables for the AWS provider. We already defined region as a variable, so we are going to reuse it (${var/region}):
provider "aws" { region = "${var.region}" }
To summarize, we have a number of .tf files in the directory here that all describe Amazon resources. They are named after the functions that can be recognized in them. Here is the list of files containing Terraform definitions:
Read now
Unlock full access