Terraform Workflow
Learn how Terraform is invoked to read files and perform the required tasks.
We'll cover the following...
The Terraform workflow (init —> plan —> apply)
In the previous section, you learned all about variables, main configurations, and metadata in TFSTATE files. As is, you’ve just built a bunch of text files. The real goal here is to create some resources! You need to invoke Terraform to read the files and get stuff done.
Initialization
Let’s assume you’ve ...