diff --git a/examples/fargate/README.md b/examples/fargate/README.md
index 0a421bc..e0cb98b 100644
--- a/examples/fargate/README.md
+++ b/examples/fargate/README.md
@@ -64,6 +64,7 @@ No inputs.
| Name | Description |
|------|-------------|
+| [alb\_dns\_name](#output\_alb\_dns\_name) | The DNS name of the load balancer |
| [cluster\_arn](#output\_cluster\_arn) | ARN that identifies the cluster |
| [cluster\_autoscaling\_capacity\_providers](#output\_cluster\_autoscaling\_capacity\_providers) | Map of capacity providers created and their attributes |
| [cluster\_capacity\_providers](#output\_cluster\_capacity\_providers) | Map of cluster capacity providers attributes |
diff --git a/examples/fargate/outputs.tf b/examples/fargate/outputs.tf
index 6f33f2f..e31035a 100644
--- a/examples/fargate/outputs.tf
+++ b/examples/fargate/outputs.tf
@@ -159,3 +159,12 @@ output "task_definition_run_task_command" {
--region ${local.region}
EOT
}
+
+################################################################################
+# Application Load Balancer
+################################################################################
+
+output "alb_dns_name" {
+ description = "The DNS name of the load balancer"
+ value = module.alb.dns_name
+}