diff --git a/examples/complete/README.md b/examples/complete/README.md
index 3f105953..9d20e63d 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -62,6 +62,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/complete/outputs.tf b/examples/complete/outputs.tf
index 35031694..dd0cdd27 100644
--- a/examples/complete/outputs.tf
+++ b/examples/complete/outputs.tf
@@ -35,3 +35,12 @@ output "services" {
description = "Map of services created and their attributes"
value = module.ecs.services
}
+
+################################################################################
+# Application Load Balancer
+################################################################################
+
+output "alb_dns_name" {
+ description = "The DNS name of the load balancer"
+ value = module.alb.dns_name
+}
diff --git a/examples/ec2-autoscaling/README.md b/examples/ec2-autoscaling/README.md
index c7a04afc..ff7a998d 100644
--- a/examples/ec2-autoscaling/README.md
+++ b/examples/ec2-autoscaling/README.md
@@ -61,6 +61,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/ec2-autoscaling/outputs.tf b/examples/ec2-autoscaling/outputs.tf
index 2f6f85a7..80903ad5 100644
--- a/examples/ec2-autoscaling/outputs.tf
+++ b/examples/ec2-autoscaling/outputs.tf
@@ -130,3 +130,12 @@ output "service_autoscaling_scheduled_actions" {
description = "Map of autoscaling scheduled actions and their attributes"
value = module.ecs_service.autoscaling_scheduled_actions
}
+
+################################################################################
+# Application Load Balancer
+################################################################################
+
+output "alb_dns_name" {
+ description = "The DNS name of the load balancer"
+ value = module.alb.dns_name
+}