Terraform Modules
Learn to create different Terraform modules.
We'll cover the following...
Modules
We’ve already made and used Terraform modules, but in this lesson, we’ll reference a module and combine it with another one.
Like libraries, we can reference them in other Terraform modules without necessarily being concerned with the other module’s implementation details.
Like functions, modules can have inputs and outputs. However, we don’t need to be concerned with their implementation details for this course.
We’ll create a module and then use it from another module to work through the basic library functionality. Understanding how Terraform modules work is vital in regular Terraform usage. ...