Interating with Terraform Module Inputs and Outputs

Declaring module in code

  • Module inputs are arbitrarily named parameters that you pass inside module block.

  • These inputs can be used as variables inside the module code

Terraform Module Outputs

  • The outputs declared inside Terraform module code can be fed back into the root module or your main code

Last updated