Skip to content

Commit 3c65ca8

Browse files
setheliotSeth Eliotbryantbiggs
authored
docs: Add ALB endpoint to examples/fargate output (#380)
* 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 * add alb output to the fargate example (same as the other two examples) --------- Co-authored-by: Seth Eliot <seliot@arpio.io> Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
1 parent cd9a514 commit 3c65ca8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

examples/fargate/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ No inputs.
6464

6565
| Name | Description |
6666
|------|-------------|
67+
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | The DNS name of the load balancer |
6768
| <a name="output_cluster_arn"></a> [cluster\_arn](#output\_cluster\_arn) | ARN that identifies the cluster |
6869
| <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 |
6970
| <a name="output_cluster_capacity_providers"></a> [cluster\_capacity\_providers](#output\_cluster\_capacity\_providers) | Map of cluster capacity providers attributes |

examples/fargate/outputs.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,12 @@ output "task_definition_run_task_command" {
159159
--region ${local.region}
160160
EOT
161161
}
162+
163+
################################################################################
164+
# Application Load Balancer
165+
################################################################################
166+
167+
output "alb_dns_name" {
168+
description = "The DNS name of the load balancer"
169+
value = module.alb.dns_name
170+
}

0 commit comments

Comments
 (0)