Task: 37 Description 📄

Saranya. S
1 min readJan 13, 2022

📌 Create unique terraform modules and upload them on a public terraform registry.

What is terraform module ?

A module can be any folder with a main.tf file in it, yes, that is the only required file for a module to be usable, but the recommendation is that you also put a README.md file with a description of the module if it’s intended to be used by people if it’s a sub-module it’s not necessary, also you will need a file called variables.tf and other outputs.tf of course if it’s a big module that cannot be split into sub-modules you can split those files for convenience or readability, variables should have descriptions so the tooling can show you what are they for, you can read more about the basics for a module here.

  • Created a module, refer to below repo:

TASK COMPLETED !!!

--

--