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 ...