IaC Module Design Vocabulary

Module encapsulation, variable validation, output value, module registry — vocabulary for reusable IaC design. Advanced

0 / 5 completed
1 / 5

A Terraform module exposes the following output:

output "rds_endpoint" {
  value = aws_db_instance.main.endpoint
}

What does this output value provide to callers of the module?