Skip to content

Commit

Permalink
docs: Add the missing description for the new output
Browse files Browse the repository at this point in the history
  • Loading branch information
jbonnier committed Nov 3, 2023
1 parent 530086a commit 74374fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ module "ecs_app" {
| Name | Description |
|------|-------------|
| <a name="output_alb_listener_arns"></a> [alb\_listener\_arns](#output\_alb\_listener\_arns) | The ARN of the ALB listeners. |
| <a name="output_ecs_service_security_group_id"></a> [ecs\_service\_security\_group\_id](#output\_ecs\_service\_security\_group\_id) | n/a |
| <a name="output_ecs_service_security_group_id"></a> [ecs\_service\_security\_group\_id](#output\_ecs\_service\_security\_group\_id) | The ID of the Security Group for the ECS service. |
| <a name="output_service_arn"></a> [service\_arn](#output\_service\_arn) | ECS Service ARN |
| <a name="output_service_name"></a> [service\_name](#output\_service\_name) | ECS Service name |
| <a name="output_task_definition_family"></a> [task\_definition\_family](#output\_task\_definition\_family) | ECS task definition family |
Expand Down
3 changes: 2 additions & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@ output "alb_listener_arns" {
}

output "ecs_service_security_group_id" {
value = module.ecs_service_sg.id
description = "The ID of the Security Group for the ECS service."
value = module.ecs_service_sg.id
}

0 comments on commit 74374fa

Please sign in to comment.