Introduction
When you create infrastructure with Terraform, you often want to see important information after it finishes. Outputs let you show key details like IP addresses or URLs. This helps you understand what was created without searching through all the resources.
When you want to see the public IP address of a server after deployment.
When you need to share the URL of a load balancer with your team.
When you want to confirm the ID of a created database instance.
When you want to pass information from one Terraform module to another.
When you want to document important values for future reference.