Applying a Terrafile pattern for using modules
We saw throughout this chapter’s recipes how to create Terraform modules and how to use them either locally or remotely with a public registry or Git repositories.
However, when you have a Terraform configuration that uses many modules, managing these modules can become complicated. This is indeed the case when the versions of these modules change; it is necessary to browse through all of the Terraform configurations to make version changes. Moreover, we do not have global visibility of all of the modules called in this Terraform configuration, as well as their versions.
Analogous to the classic package managers (NPM and NuGet), a pattern has emerged that allows users to gather the configuration of the Terraform modules used in a Terraform configuration in a centralized file called a Terrafile.
In this recipe, we will study how to use the Terrafile pattern to manage the sources of the Terraform modules.