Skip to content

Commit

Permalink
fix: add outputs descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Riqardos committed Jan 23, 2024
1 parent 2c58e4d commit c4d2cfd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ See [Production example](examples/production/README.md) for further information.

| Name | Description |
|------|-------------|
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | ## ALB, ECS |
| <a name="output_managed_services"></a> [managed\_services](#output\_managed\_services) | n/a |
| <a name="output_services_urls"></a> [services\_urls](#output\_services\_urls) | n/a |
| <a name="output_vpc_config"></a> [vpc\_config](#output\_vpc\_config) | n/a |
| <a name="output_alb_dns_name"></a> [alb\_dns\_name](#output\_alb\_dns\_name) | DNS name of the ALB |
| <a name="output_managed_services"></a> [managed\_services](#output\_managed\_services) | Managed services configuration containing endpoints and name of SSM parameters with credentials |
| <a name="output_services_urls"></a> [services\_urls](#output\_services\_urls) | URLs of the running services |
| <a name="output_vpc_config"></a> [vpc\_config](#output\_vpc\_config) | VPC configuration contaning VPC ID, CIDR block and subnets |
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->

## Contributing and reporting issues
Expand Down
7 changes: 5 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### ALB, ECS
output "alb_dns_name" {
value = module.alb.dns_name
value = module.alb.dns_name
description = "DNS name of the ALB"
}

output "services_urls" {
Expand All @@ -9,6 +9,7 @@ output "services_urls" {
frontend = local.frontend.url
engine = local.engine.url
}
description = "URLs of the running services"
}
output "vpc_config" {
value = {
Expand All @@ -17,6 +18,7 @@ output "vpc_config" {
public_subnets = local.public_subnet_ids
private_subnets = local.private_subnet_ids
}
description = "VPC configuration contaning VPC ID, CIDR block and subnets"
}

output "managed_services" {
Expand Down Expand Up @@ -50,4 +52,5 @@ output "managed_services" {

}
}
description = "Managed services configuration containing endpoints and name of SSM parameters with credentials"
}

0 comments on commit c4d2cfd

Please sign in to comment.