To make a Terraform module configurable you can add input parameters to the module. These are defined within the module using input variables. A module can also return values to the configuration that ...
The data that the module expects is hard coded in the call to the module. $ cat method_one/main.tf module "demo" { source = "../modules/VDI" teams = { "team1 ...