From 74374faa14cce239a917e7bc529220bd44d47292 Mon Sep 17 00:00:00 2001 From: jbonnier Date: Fri, 3 Nov 2023 13:44:48 -0400 Subject: [PATCH] docs: Add the missing description for the new output --- README.md | 2 +- outputs.tf | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d724a61..fb31e8d 100644 --- a/README.md +++ b/README.md @@ -223,7 +223,7 @@ module "ecs_app" { | Name | Description | |------|-------------| | [alb\_listener\_arns](#output\_alb\_listener\_arns) | The ARN of the ALB listeners. | -| [ecs\_service\_security\_group\_id](#output\_ecs\_service\_security\_group\_id) | n/a | +| [ecs\_service\_security\_group\_id](#output\_ecs\_service\_security\_group\_id) | The ID of the Security Group for the ECS service. | | [service\_arn](#output\_service\_arn) | ECS Service ARN | | [service\_name](#output\_service\_name) | ECS Service name | | [task\_definition\_family](#output\_task\_definition\_family) | ECS task definition family | diff --git a/outputs.tf b/outputs.tf index 6dc49eb..e3b698a 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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 }