Skip to content

Commit 00cc6b6

Browse files
setheliotSeth Eliot
and
Seth Eliot
authored
docs: Add ALB endpoint to example outputs (#256)
* Add ALB endpoint to outputs - this makes it easier to test for successful deployment * fix trailing whitespace * update README to conform with conventions * Add ALB endpoint to outputs - this makes it easier to test for successful deployment * EOF fix * updates in response to bryantbiggs review * docs updates to go with CR feedback --------- Co-authored-by: Seth Eliot <[email protected]>
1 parent 803cd3b commit 00cc6b6

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

examples/complete/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ No inputs.
6262

6363
| Name | Description |
6464
|------|-------------|
65+
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | The DNS name of the load balancer |
6566
| <a name="output_cluster_arn"></a> [cluster\_arn](#output\_cluster\_arn) | ARN that identifies the cluster |
6667
| <a name="output_cluster_autoscaling_capacity_providers"></a> [cluster\_autoscaling\_capacity\_providers](#output\_cluster\_autoscaling\_capacity\_providers) | Map of capacity providers created and their attributes |
6768
| <a name="output_cluster_capacity_providers"></a> [cluster\_capacity\_providers](#output\_cluster\_capacity\_providers) | Map of cluster capacity providers attributes |

examples/complete/outputs.tf

+9
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,12 @@ output "services" {
3535
description = "Map of services created and their attributes"
3636
value = module.ecs.services
3737
}
38+
39+
################################################################################
40+
# Application Load Balancer
41+
################################################################################
42+
43+
output "alb_dns_name" {
44+
description = "The DNS name of the load balancer"
45+
value = module.alb.dns_name
46+
}

examples/ec2-autoscaling/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ No inputs.
6161

6262
| Name | Description |
6363
|------|-------------|
64+
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | The DNS name of the load balancer |
6465
| <a name="output_cluster_arn"></a> [cluster\_arn](#output\_cluster\_arn) | ARN that identifies the cluster |
6566
| <a name="output_cluster_autoscaling_capacity_providers"></a> [cluster\_autoscaling\_capacity\_providers](#output\_cluster\_autoscaling\_capacity\_providers) | Map of capacity providers created and their attributes |
6667
| <a name="output_cluster_capacity_providers"></a> [cluster\_capacity\_providers](#output\_cluster\_capacity\_providers) | Map of cluster capacity providers attributes |

examples/ec2-autoscaling/outputs.tf

+9
Original file line numberDiff line numberDiff line change
@@ -130,3 +130,12 @@ output "service_autoscaling_scheduled_actions" {
130130
description = "Map of autoscaling scheduled actions and their attributes"
131131
value = module.ecs_service.autoscaling_scheduled_actions
132132
}
133+
134+
################################################################################
135+
# Application Load Balancer
136+
################################################################################
137+
138+
output "alb_dns_name" {
139+
description = "The DNS name of the load balancer"
140+
value = module.alb.dns_name
141+
}

0 commit comments

Comments
 (0)