Skip to content

Commit

Permalink
add output for ecs task definition (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
panchalnimesh authored Apr 6, 2023
1 parent 793199a commit 18fa377
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/service/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ output "ecs_service_name" {
description = "The name of the ECS service"
value = try(aws_ecs_service.this.name, "")
}
output "aws_ecs_task_definition" {
description = "ARN of the ECS service"
value = try(aws_ecs_task_definition.this.arn, "")
}

0 comments on commit 18fa377

Please sign in to comment.